From 10fa583c367184270f3151e38a67455c2d3866a3 Mon Sep 17 00:00:00 2001 From: Jamie Liu Date: Tue, 25 Aug 2020 09:56:07 -0700 Subject: 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 --- test/runtimes/exclude_php7.3.6.csv | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test') 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,, -- cgit v1.2.3