summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools
diff options
context:
space:
mode:
authorDimitrios Apostolou <jimis@qt.io>2022-06-03 19:54:58 +0200
committerDimitrios Apostolou <jimis@qt.io>2022-06-15 23:58:16 +0200
commit96001cb81234c11e35b06ed5d96fa923d170ddd7 (patch)
tree63ac54505166c9c6dd909d075ccde9efa29f22f6 /tests/auto/corelib/tools
parentf0c0ec59dfbe30ebfdb3116439dae58945af5ba7 (diff)
Increase timeout of slow test for ASAN-enabled build
Change-Id: I47b6e7e1462c1af7d41677bfe7bb0f78430f72d1 Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Diffstat (limited to 'tests/auto/corelib/tools')
-rw-r--r--tests/auto/corelib/tools/qcryptographichash/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/corelib/tools/qcryptographichash/CMakeLists.txt b/tests/auto/corelib/tools/qcryptographichash/CMakeLists.txt
index c9fe345e66..206ddc0056 100644
--- a/tests/auto/corelib/tools/qcryptographichash/CMakeLists.txt
+++ b/tests/auto/corelib/tools/qcryptographichash/CMakeLists.txt
@@ -15,3 +15,7 @@ qt_internal_add_test(tst_qcryptographichash
tst_qcryptographichash.cpp
TESTDATA ${test_data}
)
+
+if(QT_FEATURE_sanitize_address)
+ set_property(TEST tst_qcryptographichash APPEND PROPERTY ENVIRONMENT "QTEST_FUNCTION_TIMEOUT=900000")
+endif()