about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan/ubsan_shift_exponent.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/ubsan/ubsan_shift_exponent.c')
-rw-r--r--test/Feature/ubsan/ubsan_shift_exponent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/ubsan/ubsan_shift_exponent.c b/test/Feature/ubsan/ubsan_shift_exponent.c
index 548ebb66..1c133b01 100644
--- a/test/Feature/ubsan/ubsan_shift_exponent.c
+++ b/test/Feature/ubsan/ubsan_shift_exponent.c
@@ -7,7 +7,7 @@
 #include "klee/klee.h"
 
 int rsh_inbounds(signed int a, signed int b) {
-  // CHECK: runtime/Sanitizer/ubsan/ubsan_handlers.cpp:35: shift out of bounds
+  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:34: shift out of bounds
   return a >> b;
 }