aboutsummaryrefslogtreecommitdiff
path: root/tests/SConscript
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2021-03-12 11:22:55 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-03-29 19:51:04 +0000
commitf9a611a1fd309bb9a906c99eede5e6b7bceba26b (patch)
treec5bf609e205e396b6bc70bd29af3babd51bd1a9a /tests/SConscript
parenta00180a7a5e957540493d666565eb39c0cd1f122 (diff)
downloadComputeLibrary-f9a611a1fd309bb9a906c99eede5e6b7bceba26b.tar.gz
Don't build tests by default
Change-Id: I168a90227f08987639512f6820d79287a7d4b136 Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5313 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/SConscript')
-rw-r--r--tests/SConscript11
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/SConscript b/tests/SConscript
index fea68e0fe9..d4cc514693 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -1,4 +1,4 @@
-# Copyright (c) 2017-2019 Arm Limited.
+# Copyright (c) 2017-2021 Arm Limited.
#
# SPDX-License-Identifier: MIT
#
@@ -28,12 +28,11 @@ Import('install_bin')
# vars is imported from arm_compute:
variables = [
- BoolVariable("benchmark_examples", "Build benchmark examples programs", True),
- BoolVariable("validate_examples", "Build validate examples programs", True),
+ BoolVariable("benchmark_examples", "Build benchmark examples programs", False),
+ BoolVariable("validate_examples", "Build validate examples programs", False),
BoolVariable("reference_openmp", "Build reference validation with openmp", True),
- #FIXME Switch the following two options to False before releasing
- BoolVariable("validation_tests", "Build validation test programs", True),
- BoolVariable("benchmark_tests", "Build benchmark test programs", True),
+ BoolVariable("validation_tests", "Build validation test programs", False),
+ BoolVariable("benchmark_tests", "Build benchmark test programs", False),
("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp")
]