< prev index next >

test/java/lang/Math/IeeeRecommendedTests.java

Print this page




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @library /lib/testlibrary/
  27  * @build jdk.testlibrary.*
  28  * @run main IeeeRecommendedTests
  29  * @bug 4860891 4826732 4780454 4939441 4826652 8078672
  30  * @summary Tests for IEEE 754[R] recommended functions and similar methods (use -Dseed=X to set PRNG seed)
  31  * @author Joseph D. Darcy
  32  * @key randomness
  33  */
  34 
  35 import jdk.testlibrary.RandomFactory;
  36 
  37 public class IeeeRecommendedTests {
  38     private IeeeRecommendedTests(){}
  39 
  40     static final float  NaNf = Float.NaN;
  41     static final double NaNd = Double.NaN;
  42     static final float  infinityF = Float.POSITIVE_INFINITY;
  43     static final double infinityD = Double.POSITIVE_INFINITY;
  44 
  45     static final float  Float_MAX_VALUEmm       = 0x1.fffffcP+127f;
  46     static final float  Float_MAX_SUBNORMAL     = 0x0.fffffeP-126f;
  47     static final float  Float_MAX_SUBNORMALmm   = 0x0.fffffcP-126f;




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @library /lib/testlibrary/
  27  * @build jdk.testlibrary.RandomFactory
  28  * @run main IeeeRecommendedTests
  29  * @bug 4860891 4826732 4780454 4939441 4826652 8078672
  30  * @summary Tests for IEEE 754[R] recommended functions and similar methods (use -Dseed=X to set PRNG seed)
  31  * @author Joseph D. Darcy
  32  * @key randomness
  33  */
  34 
  35 import jdk.testlibrary.RandomFactory;
  36 
  37 public class IeeeRecommendedTests {
  38     private IeeeRecommendedTests(){}
  39 
  40     static final float  NaNf = Float.NaN;
  41     static final double NaNd = Double.NaN;
  42     static final float  infinityF = Float.POSITIVE_INFINITY;
  43     static final double infinityD = Double.POSITIVE_INFINITY;
  44 
  45     static final float  Float_MAX_VALUEmm       = 0x1.fffffcP+127f;
  46     static final float  Float_MAX_SUBNORMAL     = 0x0.fffffeP-126f;
  47     static final float  Float_MAX_SUBNORMALmm   = 0x0.fffffcP-126f;


< prev index next >