Skip to content

Commit bb72c37

Browse files
committed
Remove timeout from rs in thread sanitizer.
1 parent aa70064 commit bb72c37

File tree

3 files changed

+0
-20
lines changed

3 files changed

+0
-20
lines changed

source/ports/py_port/CMakeLists.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,6 @@ if(OPTION_BUILD_CLI)
6060
PROPERTY LABELS ${py_port_test}
6161
)
6262

63-
# Extend timeout when using thread sanitizer and rust
64-
if(OPTION_BUILD_THREAD_SANITIZER AND OPTION_BUILD_LOADERS_RS)
65-
set_tests_properties(${target} PROPERTIES TIMEOUT 7200)
66-
endif()
67-
6863
include(TestEnvironmentVariables)
6964

7065
test_environment_variables(${target}
@@ -104,11 +99,6 @@ set_property(TEST ${py_port_test_exec}
10499
PROPERTY LABELS ${py_port_test_exec}
105100
)
106101

107-
# Extend timeout when using thread sanitizer and rust
108-
if(OPTION_BUILD_THREAD_SANITIZER AND OPTION_BUILD_LOADERS_RS)
109-
set_tests_properties(${py_port_test_exec} PROPERTIES TIMEOUT 7200)
110-
endif()
111-
112102
include(TestEnvironmentVariables)
113103

114104
test_environment_variables(${py_port_test_exec}

source/tests/metacall_python_port_test/CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,6 @@ add_test(NAME ${target}
139139
if(OPTION_BUILD_LOADERS_RS)
140140
set(RS_DEPENDENCY rs_loader)
141141
set(TESTS_ENVIRONMENT_VARIABLES_RS "OPTION_BUILD_LOADERS_RS=1")
142-
143-
# Extend timeout when using thread sanitizer and rust
144-
if(OPTION_BUILD_THREAD_SANITIZER)
145-
set_tests_properties(${target} PROPERTIES TIMEOUT 7200)
146-
endif()
147142
endif()
148143

149144
#

source/tests/metacall_rust_test/CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@ set_property(TEST ${target}
148148
PROPERTY LABELS ${target}
149149
)
150150

151-
# Extend timeout when using thread sanitizer
152-
if(OPTION_BUILD_THREAD_SANITIZER)
153-
set_tests_properties(${target} PROPERTIES TIMEOUT 7200)
154-
endif()
155-
156151
include(TestEnvironmentVariables)
157152

158153
test_environment_variables(${target}

0 commit comments

Comments
 (0)