aboutsummaryrefslogtreecommitdiff
path: root/test/xray/TestCases/Linux/argv0-log-file-name.cc
blob: 2960c57181e05768b6e97e63df002a5361623098 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Check to make sure argv[0] is contained within the (randomised) XRay log file
// name.

// RUN: %clangxx_xray -std=c++11 %s -o %t
// RUN: XRAY_OPTIONS="patch_premain=true xray_naive_log=true" %run %t > xray.log.file.name 2>&1
// RUN: ls | FileCheck xray.log.file.name
// RUN: rm xray-log.* xray.log.file.name

#include <cstdio>
#include <libgen.h>

[[clang::xray_always_instrument]] int main(int argc, char *argv[]) {
  printf("// CHECK: xray-log.%s.{{.*}}\n", basename(argv[0]));
}