12 lines
309 B
C++
12 lines
309 B
C++
// RUN: %clangxx -fsanitize=realtime %s -o %t
|
|
// RUN: RTSAN_OPTIONS="verbosity=1,asdf=1" %run %t 2>&1 | FileCheck %s
|
|
// UNSUPPORTED: ios
|
|
|
|
// Intent: Make sure we are respecting some basic common flags
|
|
|
|
int main() {
|
|
return 0;
|
|
// CHECK: WARNING: found 1 unrecognized flag(s):
|
|
// CHECK-NEXT: {{.*asdf*}}
|
|
}
|