about summary refs log tree commit diff homepage
path: root/test
diff options
context:
space:
mode:
authorJulian Büning <julian.buening@comsys.rwth-aachen.de>2023-05-29 12:46:12 +0200
committerCristian Cadar <c.cadar@imperial.ac.uk>2023-06-05 17:16:13 +0100
commit0a240e58954753a44989cfdfb2cd6fa6f388cb49 (patch)
treeaaa79bd504525941c18eb2b7e43a19f094cad0d3 /test
parent2e4bb296854878a160e84e697a10e9a0757619c5 (diff)
downloadklee-0a240e58954753a44989cfdfb2cd6fa6f388cb49.tar.gz
re-enable StackTraceOutput.c test
This test previously had a REQUIRES line with geq-llvm-7.0. Because LLVM
version 7.0 is no longer "known" (test/lit.cfg), the required feature is
not available and the test is discarded as unsupported by llvm-lit.
Diffstat (limited to 'test')
-rw-r--r--test/Feature/StackTraceOutput.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/Feature/StackTraceOutput.c b/test/Feature/StackTraceOutput.c
index 3d4e3c51..a814adeb 100644
--- a/test/Feature/StackTraceOutput.c
+++ b/test/Feature/StackTraceOutput.c
@@ -1,4 +1,3 @@
-// REQUIRES: geq-llvm-7.0
 // RUN: %clang %s -emit-llvm %O0opt -g -c -fdiscard-value-names -o %t.bc
 // RUN: rm -rf %t.klee-out-d
 // RUN: %klee --output-dir=%t.klee-out-d %t.bc
@@ -16,10 +15,10 @@
 void foo(int i, int k) {
   ++i; ++k;
   assert(0);
-  // CHECK-DISCARD: {{.*}} in foo(symbolic, 12) at {{.*}}.c:18
-  // CHECK-DISCARD: {{.*}} in main() at {{.*}}.c:28
-  // CHECK-NODISCARD: {{.*}} in foo(i=symbolic, k=12) at {{.*}}.c:18
-  // CHECK-NODISCARD: {{.*}} in main() at {{.*}}.c:28
+  // CHECK-DISCARD: {{.*}} in foo(symbolic, 12) at {{.*}}.c:17
+  // CHECK-DISCARD: {{.*}} in main() at {{.*}}.c:27
+  // CHECK-NODISCARD: {{.*}} in foo(i=symbolic, k=12) at {{.*}}.c:17
+  // CHECK-NODISCARD: {{.*}} in main() at {{.*}}.c:27
 }
 
 int main(void) {