Skip to content

Commit ad1f08e

Browse files
committed
fix(ci): Disable sanitizers because of bitwuzla crashing with an assertion failure
1 parent bbe9a33 commit ad1f08e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

test/Floats/round.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
// Disabling sanitizers because bitwuzla crashes with an assertion failure
2+
// REQUIRES: not-asan
3+
// REQUIRES: not-msan
4+
// REQUIRES: not-ubsan
15
// RUN: %clang %s -emit-llvm -O0 -g -c -o %t1.bc
26
// RUN: rm -rf %t.klee-out
37
// RUN: %klee --libc=klee --fp-runtime --output-dir=%t.klee-out --exit-on-error %t1.bc > %t-output.txt 2>&1
4-
// RUN: FileCheck -input-file=%t-output.txt %s --dump-input=always --dump-input-filter=all
8+
// RUN: FileCheck -input-file=%t-output.txt %s
59
// REQUIRES: fp-runtime
610
#include "klee/klee.h"
711
#include <math.h>

test/Industry/CoverageErrorCall/od-4.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
// It requires bitwuzla because the script currently runs with bitwuzla solver backend
22
// REQUIRES: bitwuzla
3+
// Disabling sanitizers because bitwuzla crashes with an assertion failure
34
// REQUIRES: not-asan
45
// REQUIRES: not-msan
6+
// REQUIRES: not-ubsan
57
// REQUIRES: not-darwin
6-
// RUN: %kleef --property-file=%S/coverage-error-call.prp --max-memory=7000000000 --max-cputime-soft=180 --64 --debug %s 2>&1 | FileCheck %s --dump-input=always --dump-input-filter=all
8+
// RUN: %kleef --property-file=%S/coverage-error-call.prp --max-memory=7000000000 --max-cputime-soft=900 --64 --debug %s 2>&1 | FileCheck %s
79
// CHECK: KLEE: WARNING: 100.00% Reachable Reachable
810

911
extern long __VERIFIER_nondet_long(void);

0 commit comments

Comments
 (0)