diff options
author | Frank Busse <bb0xfb@gmail.com> | 2021-12-15 16:38:21 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-03-17 22:59:26 +0000 |
commit | 0f45ab7a5008bd5e68201449bd1e0a999f999457 (patch) | |
tree | 585d30a6d2cd9c2ee6c31240a86d034f10d564bb /unittests | |
parent | d8553f3cec042b5af9e21c268cb14ee8f7b30083 (diff) | |
download | klee-0f45ab7a5008bd5e68201449bd1e0a999f999457.tar.gz |
remove LLVM < 6 from build/test scripts
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/TestMain.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/unittests/TestMain.cpp b/unittests/TestMain.cpp index 42dd721a..9512e59a 100644 --- a/unittests/TestMain.cpp +++ b/unittests/TestMain.cpp @@ -7,21 +7,13 @@ // //===----------------------------------------------------------------------===// -#include "klee/Config/Version.h" - #include "llvm/ADT/StringRef.h" #include "llvm/Support/Signals.h" #include "gtest/gtest.h" int main(int argc, char **argv) { - -#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 9) llvm::sys::PrintStackTraceOnErrorSignal(argv[0], true); -#else - llvm::sys::PrintStackTraceOnErrorSignal(true); -#endif - testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } |