summaryrefslogtreecommitdiff
path: root/test/datastructures/lazyPropagation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/datastructures/lazyPropagation.cpp')
-rw-r--r--test/datastructures/lazyPropagation.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/datastructures/lazyPropagation.cpp b/test/datastructures/lazyPropagation.cpp
index 16db945..2e7431b 100644
--- a/test/datastructures/lazyPropagation.cpp
+++ b/test/datastructures/lazyPropagation.cpp
@@ -113,6 +113,8 @@ void performance_test_binary_search() {
int main() {
stress_test();
stress_test_binary_search();
- performance_test();
- performance_test_binary_search();
+ if (!sanitize) {
+ performance_test();
+ performance_test_binary_search();
+ }
}