mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
[t:4814] make more tests' timeouts longer
git-svn-id: file:///svn/toku/tokudb@43341 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
482a652da7
commit
52cad75df0
2 changed files with 16 additions and 5 deletions
|
@ -98,13 +98,18 @@ if(BUILD_TESTING)
|
||||||
endif()
|
endif()
|
||||||
endforeach(src)
|
endforeach(src)
|
||||||
|
|
||||||
## give some tests, that time out when run with valgrind, 1 hour to complete
|
## give some tests, that time out normally, 1 hour to complete
|
||||||
set(long_tests
|
set(long_tests
|
||||||
subblock-test-checksum
|
|
||||||
subblock-test-compression
|
subblock-test-compression
|
||||||
benchmark-test
|
|
||||||
benchmark-test_256
|
benchmark-test_256
|
||||||
is_empty
|
is_empty
|
||||||
)
|
)
|
||||||
set_tests_properties(${long_tests} PROPERTIES TIMEOUT 3600)
|
set_tests_properties(${long_tests} PROPERTIES TIMEOUT 3600)
|
||||||
|
## some take even longer, with valgrind
|
||||||
|
set(extra_long_tests
|
||||||
|
subblock-test-checksum
|
||||||
|
orthopush-flush
|
||||||
|
benchmark-test
|
||||||
|
)
|
||||||
|
set_tests_properties(${extra_long_tests} PROPERTIES TIMEOUT 5400)
|
||||||
endif(BUILD_TESTING)
|
endif(BUILD_TESTING)
|
||||||
|
|
|
@ -587,11 +587,10 @@ if(BUILD_TESTING)
|
||||||
|
|
||||||
set_tests_properties(${tdb_tests_that_should_fail} PROPERTIES WILL_FAIL TRUE)
|
set_tests_properties(${tdb_tests_that_should_fail} PROPERTIES WILL_FAIL TRUE)
|
||||||
|
|
||||||
## give some tests, that time out when run with valgrind, 1 hour to complete
|
## give some tests, that time out normally, 1 hour to complete
|
||||||
set(long_tests
|
set(long_tests
|
||||||
drd_test_4015.tdb
|
drd_test_4015.tdb
|
||||||
test_query.tdb
|
test_query.tdb
|
||||||
loader-stress-del.p.loader
|
|
||||||
loader-stress-del.nop.loader
|
loader-stress-del.nop.loader
|
||||||
test1572.tdb
|
test1572.tdb
|
||||||
checkpoint_1.tdb
|
checkpoint_1.tdb
|
||||||
|
@ -623,4 +622,11 @@ if(BUILD_TESTING)
|
||||||
)
|
)
|
||||||
endif (BDB_FOUND)
|
endif (BDB_FOUND)
|
||||||
set_tests_properties(${long_tests} PROPERTIES TIMEOUT 3600)
|
set_tests_properties(${long_tests} PROPERTIES TIMEOUT 3600)
|
||||||
|
## some take even longer, with valgrind
|
||||||
|
set(extra_long_tests
|
||||||
|
test3039.tdb
|
||||||
|
loader-dup-test0.tdb
|
||||||
|
loader-stress-del.p.loader
|
||||||
|
)
|
||||||
|
set_tests_properties(${extra_long_tests} PROPERTIES TIMEOUT 5400)
|
||||||
endif(BUILD_TESTING)
|
endif(BUILD_TESTING)
|
||||||
|
|
Loading…
Add table
Reference in a new issue