about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan/ubsan_array_bounds.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/ubsan/ubsan_array_bounds.c')
-rw-r--r--test/Feature/ubsan/ubsan_array_bounds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/ubsan/ubsan_array_bounds.c b/test/Feature/ubsan/ubsan_array_bounds.c
index b8ed91f0..8b067afa 100644
--- a/test/Feature/ubsan/ubsan_array_bounds.c
+++ b/test/Feature/ubsan/ubsan_array_bounds.c
@@ -9,7 +9,7 @@
 unsigned int array_index(unsigned int n) {
   unsigned int a[4] = {0};
 
-  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:34: out-of-bounds-index
+  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:{{[0-9]+}}: out-of-bounds-index
   return a[n];
 }