Skip to content

Commit b978bcc

Browse files
authored
[compiler-rt][test] Rewrote test to remove curly braces (#105696)
This patch removes curly braces from a test, as lit's internal shell implementation does not support curly brace syntax. Fixes #102382.
1 parent 7912abe commit b978bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/test/asan/TestCases/Linux/dlopen-mixed-c-cxx.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: %clangxx_asan -xc++ -shared -fPIC -o %t.so - < %s
22
// RUN: %clang_asan %s -o %t.out -ldl
33
//
4-
// RUN: { env ASAN_OPTIONS=verbosity=1 %t.out %t.so || : ; } 2>&1 | FileCheck %s
4+
// RUN: env ASAN_OPTIONS=verbosity=1 not %t.out %t.so 2>&1 | FileCheck %s
55
//
66
// CHECK: AddressSanitizer: failed to intercept '__cxa_throw'
77
//

0 commit comments

Comments
 (0)