aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorJacob Bramley <jacob.bramley@arm.com>2018-08-30 12:09:34 +0100
committerJacob Bramley <jacob.bramley@arm.com>2018-08-30 18:10:58 +0100
commit0f71a76d3846475b4ebd441a11bd3238479a2c61 (patch)
tree570ee01967a1e9f39a3c1113692f1b3a92704296 /SConstruct
parent59aee848df95d80b37de8819a69defacb11be0e9 (diff)
downloadvixl-0f71a76d3846475b4ebd441a11bd3238479a2c61.tar.gz
Fix and re-enable test-examples.
These tests have been disabled for a long time, apparently by accident. This patch restores them, and applies fixes necessary to get them working. Notably: - Fix the simulated-runtime-calls example, and correct an ifdef to ensure that it builds. - Enable --trace-* options for test-examples, to match the behaviour of other tests. Change-Id: Iab0034f19ce935ba7237f8546f9c43f8cec13312
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 3c64b3f1..07ca998a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -545,7 +545,7 @@ if CanTargetAArch64(env):
test_aarch64_examples_vdir = join(TargetBuildDir(env), 'test', 'aarch64', 'test_examples')
VariantDir(test_aarch64_examples_vdir, '.')
test_aarch64_examples_obj = env.Object(
- [Glob(join(test_aarch64_examples_vdir, join('test', 'aarch64', 'examples/aarch64', '*.cc'))),
+ [Glob(join(test_aarch64_examples_vdir, join('test', 'aarch64', 'examples', '*.cc'))),
Glob(join(test_aarch64_examples_vdir, join('examples/aarch64', '*.cc')))],
CCFLAGS = env['CCFLAGS'] + ['-DTEST_EXAMPLES'],
CPPPATH = env['CPPPATH'] + [config.dir_aarch64_examples] + [config.dir_tests])