about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan/ubsan_shift_base.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/ubsan/ubsan_shift_base.c')
-rw-r--r--test/Feature/ubsan/ubsan_shift_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/ubsan/ubsan_shift_base.c b/test/Feature/ubsan/ubsan_shift_base.c
index 755c26c3..00c55ac3 100644
--- a/test/Feature/ubsan/ubsan_shift_base.c
+++ b/test/Feature/ubsan/ubsan_shift_base.c
@@ -13,7 +13,7 @@
 #include "klee/klee.h"
 
 int lsh_overflow(signed int a, signed int b) {
-  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:34: shift out of bounds
+  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:{{[0-9]+}}: shift out of bounds
   return a << b;
 }