12 lines · cpp
1// RUN: %clangxx -fsanitize=realtime %s -o %t2// RUN: env RTSAN_OPTIONS="verbosity=1,asdf=1" %run %t 2>&1 | FileCheck %s3// UNSUPPORTED: ios4 5// Intent: Make sure we are respecting some basic common flags6 7int main() {8 return 0;9 // CHECK: WARNING: found 1 unrecognized flag(s):10 // CHECK-NEXT: {{.*asdf*}}11}12