URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [default_format_1.f90] - Rev 700
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run { xfail spu-*-* } }! Test XFAILed on Darwin because the system's printf() lacks! proper support for denormals.!! This tests that the default formats for formatted I/O of reals are! wide enough and have enough precision, by checking that values can! be written and read back.!include "default_format_1.inc"program mainuse test_default_formatif (test (1.0_4, 0) /= 0) call abortif (test (tiny(0.0_4), 1) /= 0) call abortif (test (-tiny(0.0_4), -1) /= 0) call abortif (test (huge(0.0_4), -1) /= 0) call abortif (test (-huge(0.0_4), 1) /= 0) call abortif (test (1.0_8, 0) /= 0) call abortif (test (tiny(0.0_8), 1) /= 0) call abortif (test (-tiny(0.0_8), -1) /= 0) call abortif (test (huge(0.0_8), -1) /= 0) call abortif (test (-huge(0.0_8), 1) /= 0) call abortend program main!! { dg-final { cleanup-modules "test_default_format" } }
Go to most recent revision | Compare with Previous | Blame | View Log
