diff options
author | Gleb Popov <6yearold@gmail.com> | 2019-05-05 18:18:52 +0400 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-05-06 10:51:27 +0100 |
commit | 0edd1ec26d22bc353e817488d43f493409b3e60d (patch) | |
tree | 2be4b784fd39eec00f771e306d9c8bbe472b96a3 /test/lit.cfg | |
parent | 27781b6335b9c139dc6cacf5e206289c0fec7c54 (diff) | |
download | klee-0edd1ec26d22bc353e817488d43f493409b3e60d.tar.gz |
Add 'freebsd' feature in lit.cfg and use it to XFAIL LargeReturnTypes.cpp test.
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 131369f8..fb479a86 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -195,7 +195,7 @@ if config.enable_libcxx: config.available_features.add('{}libcxx'.format('' if config.enable_libcxx else 'not-')) # Target operating system features -supported_targets = ['linux', 'darwin'] +supported_targets = ['linux', 'darwin', 'freebsd'] for target in supported_targets: if config.target_triple.find(target) != -1: config.available_features.add(target) |