default_format_1.f90
来自「用于进行gcc测试」· F90 代码 · 共 30 行
F90
30 行
! { dg-do run }! 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 main use test_default_format if (test (1.0_4, 0) /= 0) call abort if (test (0.0_4, 0) /= 0) call abort if (test (tiny(0.0_4), 1) /= 0) call abort if (test (-tiny(0.0_4), -1) /= 0) call abort if (test (huge(0.0_4), -1) /= 0) call abort if (test (-huge(0.0_4), 1) /= 0) call abort if (test (1.0_8, 0) /= 0) call abort if (test (0.0_8, 0) /= 0) call abort if (test (tiny(0.0_8), 1) /= 0) call abort if (test (-tiny(0.0_8), -1) /= 0) call abort if (test (huge(0.0_8), -1) /= 0) call abort if (test (-huge(0.0_8), 1) /= 0) call abortend program main!! { dg-final { cleanup-modules "test_default_format" } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?