Skip to content

Commit 893469d

Browse files
committed
Pass TEST_MONITOR_DEFAULT_TIMEOUT also to 32 bit tests.
1 parent 1ffd920 commit 893469d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,20 +1667,20 @@ if(BUILD_TESTS)
16671667
foreach(test ${BASIC_TESTS} ${BASIC_CPP_TESTS} ${OTHER_TESTS})
16681668
get_filename_component(testname ${test} NAME)
16691669
add_test(${test}-32
1670-
bash source_dir/src/test/basic_test.run ${testname}_32 "" bin_dir)
1670+
bash source_dir/src/test/basic_test.run ${testname}_32 "" bin_dir ${TEST_MONITOR_DEFAULT_TIMEOUT})
16711671
configure_test(${test}-32)
16721672
add_test(${test}-32-no-syscallbuf
1673-
bash source_dir/src/test/basic_test.run ${testname}_32 -n bin_dir)
1673+
bash source_dir/src/test/basic_test.run ${testname}_32 -n bin_dir ${TEST_MONITOR_DEFAULT_TIMEOUT})
16741674
configure_test(${test}-32-no-syscallbuf)
16751675
endforeach(test)
16761676

16771677
foreach(test ${TESTS_WITH_PROGRAM} ${TESTS_WITHOUT_PROGRAM})
16781678
get_filename_component(testname ${test} NAME)
16791679
add_test(${test}-32
1680-
bash source_dir/src/test/${test}.run ${testname}_32 "" bin_dir)
1680+
bash source_dir/src/test/${test}.run ${testname}_32 "" bin_dir ${TEST_MONITOR_DEFAULT_TIMEOUT})
16811681
configure_test(${test}-32)
16821682
add_test(${test}-32-no-syscallbuf
1683-
bash source_dir/src/test/${test}.run ${testname}_32 -n bin_dir)
1683+
bash source_dir/src/test/${test}.run ${testname}_32 -n bin_dir ${TEST_MONITOR_DEFAULT_TIMEOUT})
16841684
configure_test(${test}-32-no-syscallbuf)
16851685
endforeach(test)
16861686
endif()

0 commit comments

Comments
 (0)