aboutsummaryrefslogtreecommitdiff
path: root/tests/SConscript
diff options
context:
space:
mode:
authorSiCong Li <sicong.li@arm.com>2019-11-19 14:31:28 +0000
committerSiCong Li <sicong.li@arm.com>2019-11-21 13:15:23 +0000
commit0c09582171e863cee76c5877312992a253b1e7f1 (patch)
treedf195abcada01fef1ce82946ad38c68adc7721ac /tests/SConscript
parent581f178b67a74060fc8a5272c5a6c9571d855131 (diff)
downloadComputeLibrary-0c09582171e863cee76c5877312992a253b1e7f1.tar.gz
COMPMID-2939 Keep benchmark_examples and validate_examples
Remove FIXME comments in Sconscripts referring to the removal of benchmark_examples and validate_examples, as we are keeping them in releases from now on. This is a 19.11 release activity ticket but the patch needs to be backported to master because this applies to all future releases. Signed-off-by: SiCong Li <sicong.li@arm.com> Change-Id: Ifac73ebeaf12c93d6309f73bb011bd275e1fe503 Reviewed-on: https://review.mlplatform.org/c/2334 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/SConscript')
-rw-r--r--tests/SConscript3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/SConscript b/tests/SConscript
index a062cacaa5..663216906f 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -30,7 +30,6 @@ 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("validate_examples", "Build validate examples programs", True),
#FIXME Switch the following two options to False before releasing
@@ -161,7 +160,6 @@ if test_env['validation_tests']:
Default(arm_compute_validation)
Export('arm_compute_validation')
- #FIXME: Remove before release!
if test_env['validate_examples']:
files_validate_examples = [ test_env.Object('validate_examples/RunExample.cpp') ] + [ x for x in common_objects if not "main.o" in str(x)]
arm_compute_validate_examples = []
@@ -196,7 +194,6 @@ if test_env['validation_tests']:
Default(arm_compute_validate_examples)
Export('arm_compute_validate_examples')
-#FIXME: Remove before release!
if test_env['benchmark_examples']:
files_benchmark_examples = test_env.Object('benchmark_examples/RunExample.cpp')
graph_utils = test_env.Object(source="../utils/GraphUtils.cpp", target="GraphUtils")