diff options
author | Manuel Bottini <manuel.bottini@arm.com> | 2020-05-22 10:58:14 +0100 |
---|---|---|
committer | Manuel Bottini <manuel.bottini@arm.com> | 2020-05-22 10:58:23 +0100 |
commit | 0ba7c3ac045b353d977b23c9de362e0e7e7a65ee (patch) | |
tree | 5c5335752f6480b8f16937deebb0a412b1e5fed8 /tests | |
parent | 91873fcd7678b9358715611b4ac6abb041e54bc5 (diff) | |
download | armcl-0ba7c3ac045b353d977b23c9de362e0e7e7a65ee.tar.gz armcl-0ba7c3ac045b353d977b23c9de362e0e7e7a65ee.tar.bz2 armcl-0ba7c3ac045b353d977b23c9de362e0e7e7a65ee.zip |
Remove blocks of codes / files which are marked as INTERNAL_ONLY and Disable validation and benchmark tests - p2
Change-Id: I9c458f87e34bcb2fa509fedfdc1654888d009be3
Signed-off-by: Manuel Bottini <manuel.bottini@arm.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/SConscript | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/SConscript b/tests/SConscript index 8634f5c41..ae5337520 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -31,7 +31,6 @@ variables = [ BoolVariable("benchmark_examples", "Build benchmark examples programs", True), BoolVariable("validate_examples", "Build validate examples programs", True), 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", False), BoolVariable("benchmark_tests", "Build benchmark test programs", False), ("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp") @@ -95,9 +94,6 @@ 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') @@ -114,23 +110,14 @@ 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) - #FIXME Delete before release - if env['internal_only']: - files_validation += Glob('../3rdparty/tests/validation/CL/' + filter_pattern) 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) if env['os'] == 'bare_metal': |