diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2023-02-23 22:10:00 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2023-03-17 22:38:16 +0000 |
commit | d811fad5cfec036fc413d47db3bcc3eab0b1457e (patch) | |
tree | 9ea08f45d4d4ebb7a75537c4bf5be03760c20cc3 /test/Feature | |
parent | 134571efec28aa754beaba829fe75f666c065845 (diff) | |
download | klee-d811fad5cfec036fc413d47db3bcc3eab0b1457e.tar.gz |
Disable `const_array_opt1` for ubsan as well
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/const_array_opt1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Feature/const_array_opt1.c b/test/Feature/const_array_opt1.c index 1776e9d8..1ed3c3ee 100644 --- a/test/Feature/const_array_opt1.c +++ b/test/Feature/const_array_opt1.c @@ -1,5 +1,6 @@ // REQUIRES: not-msan -// Disabling msan because it times out on CI +// REQUIRES: not-ubsan +// Disabling msan and ubsan because it times out on CI // RUN: %clang %s -emit-llvm %O0opt -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --const-array-opt --max-time=10 --only-output-states-covering-new %t.bc | FileCheck %s |