about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan/ubsan_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/ubsan/ubsan_null.c')
-rw-r--r--test/Feature/ubsan/ubsan_null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/ubsan/ubsan_null.c b/test/Feature/ubsan/ubsan_null.c
index 754b31d3..459e3e0d 100644
--- a/test/Feature/ubsan/ubsan_null.c
+++ b/test/Feature/ubsan/ubsan_null.c
@@ -15,7 +15,7 @@ int main() {
   int local = 0;
   int *arg = null ? 0x0 : &local;
 
-  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:34: null-pointer-use
+  // CHECK: KLEE: ERROR: {{.*}}runtime/Sanitizer/ubsan/ubsan_handlers.cpp:{{[0-9]+}}: null-pointer-use
   result = *arg;
   return 0;
 }