diff options
author | Jamie Liu <jamieliu@google.com> | 2020-08-25 09:56:07 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-25 09:57:59 -0700 |
commit | 10fa583c367184270f3151e38a67455c2d3866a3 (patch) | |
tree | bb0ff108cd4afa641c8d878002426bc794b24da8 /test | |
parent | 46485f9d473b849e3780af8b757244dde3deacf9 (diff) |
Disable PHP disk space tests.
These tests print disk_free_space()/disk_total_space() and expect the printed
result to be an integer (despite the fact that both the documented and returned
type is float). After cl/297213789, free/total disk space on tmpfs is
sufficiently large that PHP prints the result in scientific notation instead:
========DIFF========
012+ float(9.2233720368548E+18)
013+ float(9.2233720368548E+18)
012- float(%d)
013- float(%d)
========DONE========
FAIL disk_total_space() and disk_free_space() tests [ext/standard/tests/file/disk.phpt]
PiperOrigin-RevId: 328349906
Diffstat (limited to 'test')
-rw-r--r-- | test/runtimes/exclude_php7.3.6.csv | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/runtimes/exclude_php7.3.6.csv b/test/runtimes/exclude_php7.3.6.csv index 2ce979dc8..d252383a0 100644 --- a/test/runtimes/exclude_php7.3.6.csv +++ b/test/runtimes/exclude_php7.3.6.csv @@ -13,6 +13,13 @@ ext/session/tests/session_set_save_handler_class_018.phpt,, ext/session/tests/session_set_save_handler_iface_003.phpt,, ext/session/tests/session_set_save_handler_sid_001.phpt,, ext/session/tests/session_set_save_handler_variation4.phpt,, +ext/standard/tests/file/disk.phpt,,Test bug +ext/standard/tests/file/disk_free_space_basic.phpt,,Test bug +ext/standard/tests/file/disk_free_space_error.phpt,,Test bug +ext/standard/tests/file/disk_free_space_variation.phpt,,Test bug +ext/standard/tests/file/disk_total_space_basic.phpt,,Test bug +ext/standard/tests/file/disk_total_space_error.phpt,,Test bug +ext/standard/tests/file/disk_total_space_variation.phpt,,Test bug ext/standard/tests/file/fopen_variation19.phpt,b/162894964, ext/standard/tests/file/lstat_stat_variation14.phpt,,Flaky ext/standard/tests/file/php_fd_wrapper_01.phpt,, |