aboutsummaryrefslogtreecommitdiff
path: root/tests/SConscript
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-11-28 15:07:29 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2018-11-29 18:38:31 +0000
commiteb6aad7e1eee0c0659ea71444ed4093c52267af3 (patch)
tree6734b1a7ffa2ef1ae13c4b2daeeb557fc8774fbc /tests/SConscript
parent00e6e1e7de746a76bbe3f4eb7b5d63034c5029fb (diff)
downloadComputeLibrary-eb6aad7e1eee0c0659ea71444ed4093c52267af3.tar.gz
COMPMID-1811 (3RDPARTY_UPDATE): Rework benchmarks
Change-Id: I02a4ea0270e1776daf8ac1084f28dd054257be4a Reviewed-on: https://review.mlplatform.org/309 Reviewed-by: Pablo Marquez <pablo.tello@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/SConscript')
-rw-r--r--tests/SConscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/SConscript b/tests/SConscript
index 24714efa74..41731c2343 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -85,6 +85,9 @@ common_files = Glob('*.cpp')
common_objects = [test_env.StaticObject(f) for f in common_files]
files_benchmark = Glob('benchmark/*.cpp')
+#FIXME Delete before release
+if env['internal_only']:
+ files_benchmark += Glob('../3rdparty/tests/benchmark/*.cpp')
# Add unit tests
files_validation = Glob('validation/UNIT/*/*.cpp')
@@ -101,6 +104,9 @@ if env['opencl']:
files_benchmark += Glob('benchmark/CL/*/' + filter_pattern)
files_benchmark += Glob('benchmark/CL/' + filter_pattern)
+ #FIXME Delete before release
+ if env['internal_only']:
+ files_benchmark += Glob('../3rdparty/tests/benchmark/CL/' + filter_pattern)
files_validation += Glob('validation/CL/*/' + filter_pattern)
files_validation += Glob('validation/CL/' + filter_pattern)
@@ -109,6 +115,9 @@ if env['neon']:
filter_pattern = test_env['test_filter']
files_benchmark += Glob('benchmark/NEON/*/' + filter_pattern)
files_benchmark += Glob('benchmark/NEON/' + filter_pattern)
+ #FIXME Delete before release
+ if env['internal_only']:
+ files_benchmark += Glob('../3rdparty/tests/benchmark/NEON/' + filter_pattern)
files_validation += Glob('validation/NEON/*/' + filter_pattern)
files_validation += Glob('validation/NEON/' + filter_pattern)