about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan/ubsan_float_cast_overflow.c
diff options
context:
space:
mode:
authorPavel <operasfantom@gmail.com>2022-07-10 18:05:23 +0400
committerCristian Cadar <c.cadar@imperial.ac.uk>2022-09-14 20:40:10 +0100
commit8ecf071992adab8b8c5593faab7338d16b15f364 (patch)
treee4148cb20ec7a99591fe738c938f1f5956c8f304 /test/Feature/ubsan/ubsan_float_cast_overflow.c
parent9b08202f12b039d8f39dfead004eabbf7361a028 (diff)
downloadklee-8ecf071992adab8b8c5593faab7338d16b15f364.tar.gz
Improve pattern for FileCheck in UBSan's tests
Diffstat (limited to 'test/Feature/ubsan/ubsan_float_cast_overflow.c')
-rw-r--r--test/Feature/ubsan/ubsan_float_cast_overflow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/ubsan/ubsan_float_cast_overflow.c b/test/Feature/ubsan/ubsan_float_cast_overflow.c
index 6f17c6fa..ad17c95c 100644
--- a/test/Feature/ubsan/ubsan_float_cast_overflow.c
+++ b/test/Feature/ubsan/ubsan_float_cast_overflow.c
@@ -14,7 +14,7 @@ int main() {
 
   //  klee_make_symbolic(&f, sizeof(f), "f");
 
-  // CHECK: runtime/Sanitizer/ubsan/ubsan_handlers.cpp:35: float-cast-overflow
+  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:34: float-cast-overflow
   result = f + 0x80;
   return 0;
 }