From eb6aad7e1eee0c0659ea71444ed4093c52267af3 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 28 Nov 2018 15:07:29 +0000 Subject: COMPMID-1811 (3RDPARTY_UPDATE): Rework benchmarks Change-Id: I02a4ea0270e1776daf8ac1084f28dd054257be4a Reviewed-on: https://review.mlplatform.org/309 Reviewed-by: Pablo Marquez Tested-by: Arm Jenkins --- tests/SConscript | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests/SConscript') 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) -- cgit v1.2.1