about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--test/Feature/LargeReturnTypes.cpp1
-rw-r--r--test/lit.cfg2
2 files changed, 2 insertions, 1 deletions
diff --git a/test/Feature/LargeReturnTypes.cpp b/test/Feature/LargeReturnTypes.cpp
index 54a040e2..8db961f9 100644
--- a/test/Feature/LargeReturnTypes.cpp
+++ b/test/Feature/LargeReturnTypes.cpp
@@ -1,6 +1,7 @@
 // REQUIRES: not-msan
 // Requires instrumented C++ library for msan
 // REQUIRES: not-darwin
+// REQUIRES: not-freebsd
 // RUN: %clangxx -g -fno-exceptions -emit-llvm %O0opt -c -o %t.bc %s
 // RUN: rm -rf %t.klee-out
 // RUN: %klee --output-dir=%t.klee-out --libc=klee --write-no-tests --exit-on-error %t.bc > %t.log
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)