diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-06-25 15:14:05 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-06-25 15:14:05 (GMT) |
commit | 9af47aaa1398d1e88b629c78c537532025be01c7 (patch) | |
tree | 69c04b30d0588a72b38f69411d27bb345a76da72 | |
parent | 6429a086cf50265a89a4ab57cd41b748f34a3932 (diff) | |
download | hdf5-9af47aaa1398d1e88b629c78c537532025be01c7.zip hdf5-9af47aaa1398d1e88b629c78c537532025be01c7.tar.gz hdf5-9af47aaa1398d1e88b629c78c537532025be01c7.tar.bz2 |
[svn-r15273] Purpose: Disable fillval test on Windows
Description:
The fillval test uses random input to test various fill cases. Certain boundary cases cause the test to fail, which produces sporadic errors on Windows. There is a bug filed for the issue here:
http://bugzilla.hdfgroup.uiuc.edu/show_bug.cgi?id=1155
We will disable the test until the bug is fixed.
Tested:
None, simply disabled.
-rw-r--r-- | windows/test/checktests.bat | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/windows/test/checktests.bat b/windows/test/checktests.bat index 197ab04..cb56523 100644 --- a/windows/test/checktests.bat +++ b/windows/test/checktests.bat @@ -99,7 +99,10 @@ rem on it for sending parameters. --SJW 9/6/07 call :add_test unlink%2 .\unlink%2\%1
call :add_test big%2 .\big%2\%1
call :add_test mtime%2 .\mtime%2\%1
- call :add_test fillval%2 .\fillval%2\%1
+ rem Teset commented because fillval produces spurious errors sporatically.
+ rem There is a bug filed (1155), and we will re-enable it when this is
+ rem fixed. -SJW 6/25/08
+ rem call :add_test fillval%2 .\fillval%2\%1
call :add_test mount%2 .\mount%2\%1
call :add_test flush1%2 .\flush1%2\%1
call :add_test flush2%2 .\flush2%2\%1
|