From cb9f1e14c2b5af96539bad7dc6ae9567d0b29c96 Mon Sep 17 00:00:00 2001 From: morgolock Date: Thu, 19 Nov 2020 14:38:22 +0000 Subject: Remove INTERNAL_ONLY Change-Id: I39f0296fdb8c9be36c2775fab9b91ef22db7b136 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4479 Reviewed-by: SiCong Li Tested-by: Gian Marco Iodice --- tests/SConscript | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'tests/SConscript') diff --git a/tests/SConscript b/tests/SConscript index 6fc67af747..42f9f35552 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -88,10 +88,6 @@ else: if env['os'] in ['bare_metal']: Import("bootcode_o") -#FIXME Delete before release -if env['internal_only']: - test_env.Append(CPPDEFINES=['INTERNAL_ONLY']) - test_env.Append(CPPPATH = ["#3rdparty/include"]) test_env.Append(LIBPATH = ["#3rdparty/%s/%s" % (env['os'], env['arch'])]) @@ -99,9 +95,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') @@ -118,24 +111,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': files_validation += Glob('validation/NEON/UNIT/MemoryManager.cpp' + filter_pattern) -- cgit v1.2.1