1 // Make sure that we don't get the inmemory logging implementation enabled when
2 // we turn it off via options.
4 // RUN: %clangxx_xray -std=c++11 %s -o %t
5 // RUN: env XRAY_OPTIONS="patch_premain=true verbosity=1 xray_logfile_base=optional-inmemory-log.xray-" %run %t 2>&1 | FileCheck %s
7 // Make sure we clean out the logs in case there was a bug.
9 // RUN: rm -f optional-inmemory-log.xray-*
11 // UNSUPPORTED: target-is-mips64,target-is-mips64el
15 [[clang::xray_always_instrument
]] void foo() {
16 printf("foo() is always instrumented!");
20 // CHECK-NOT: XRay: Log file in 'optional-inmemory-log.xray-{{.*}}'
22 // CHECK: foo() is always instrumented!