diff options
Diffstat (limited to 'compiler-rt/test/asan/TestCases/default_options.cc')
-rw-r--r-- | compiler-rt/test/asan/TestCases/default_options.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/asan/TestCases/default_options.cc b/compiler-rt/test/asan/TestCases/default_options.cc index 6453f66a952..9a6eaeb0bf1 100644 --- a/compiler-rt/test/asan/TestCases/default_options.cc +++ b/compiler-rt/test/asan/TestCases/default_options.cc @@ -4,12 +4,12 @@ // __asan_default_options() are not supported on Windows. // XFAIL: win32 -const char *kAsanDefaultOptions="verbosity=1 foo=bar"; +const char *kAsanDefaultOptions="verbosity=1 strip_path_prefix=bar"; extern "C" __attribute__((no_sanitize_address)) const char *__asan_default_options() { - // CHECK: Using the defaults from __asan_default_options: {{.*}} foo=bar + // CHECK: Using the defaults from __asan_default_options: {{.*}} strip_path_prefix=bar return kAsanDefaultOptions; } |