From 68c22004ec026bc47bd20a6b52c40f2dbf0ffd55 Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Tue, 15 Mar 2022 10:17:29 +0000 Subject: Fix dynamic fusion test Scons to enable unit tests Partially resolves: COMPMID-5152 Signed-off-by: SiCong Li Change-Id: I3b584e33d160284132e62ecfc8ea80dbd7b08a1d Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7306 Comments-Addressed: Arm Jenkins Reviewed-by: Gunes Bayir Tested-by: Arm Jenkins --- tests/SConscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/SConscript b/tests/SConscript index bcbd5a2f31..005699e397 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2017-2021 Arm Limited. +# Copyright (c) 2017-2022 Arm Limited. # # SPDX-License-Identifier: MIT # @@ -129,6 +129,8 @@ if env['opencl']: files_validation += Glob('validation/CL/*/' + filter_pattern) files_validation += Glob('validation/CL/' + filter_pattern) + if env['experimental_dynamic_fusion'] and not env['embed_kernels']: + files_validation += Glob('validation/CL/UNIT/dynamic_fusion/' + filter_pattern) if env['external_tests_dir']: files_validation += Glob(env['external_tests_dir'] + '/tests/validation/CL/' + filter_pattern) files_validation += Glob('validation/gpu/unit/*.cpp') -- cgit v1.2.1