diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2019-03-13 13:28:48 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-17 15:43:21 +0000 |
commit | ae6da669e546d2ac0881da2c898c01f28b7ed7e2 (patch) | |
tree | 0cc60b6bb5f407a7641a489be640174961221707 /test/lit.cfg | |
parent | 7ad366f363d23b0aea788fca69349e50180f5f78 (diff) | |
download | klee-ae6da669e546d2ac0881da2c898c01f28b7ed7e2.tar.gz |
Fix libc++ testcases
* remove wrapper script invocation and script * add build instruction to test cases * added additional checks * add check to avoid execution of tests if KLEE is not compiled with libc++
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 1dafa911..05dfd7f1 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -189,6 +189,10 @@ config.available_features.add('zlib' if config.enable_zlib else 'not-zlib') if config.enable_posix_runtime: config.available_features.add('posix-runtime') +# LibC++ runtime feature +if config.enable_libcxx: + config.available_features.add('{}libcxx'.format('' if config.enable_libcxx else 'not-')) + # Target operating system features supported_targets = ['linux', 'darwin'] for target in supported_targets: |