aboutsummaryrefslogtreecommitdiff
path: root/tests/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SConscript')
-rw-r--r--tests/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/SConscript b/tests/SConscript
index 4261331d43..a128d399f8 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -29,9 +29,10 @@ SConscript('./framework/SConscript', duplicate=0)
# vars is imported from arm_compute:
variables = [
+ #FIXME: Remove before release!
+ BoolVariable("benchmark_examples", "Build benchmark examples programs", True),
BoolVariable("validation_tests", "Build validation test programs", True),
BoolVariable("benchmark_tests", "Build benchmark test programs", True),
- BoolVariable("benchmark_examples", "Build benchmark examples programs", True),
("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp")
]
@@ -164,6 +165,7 @@ if test_env['validation_tests']:
Default(arm_compute_validation)
Export('arm_compute_validation')
+#FIXME: Remove before release!
if test_env['benchmark_examples']:
files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
arm_compute_benchmark_examples = []