brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 70a117b Raw
16 lines · c
1// XFAIL: target={{.*}}-aix{{.*}}2 3// RUN: %clang -### -S -fdebug-compilation-dir . %s 2>&1 | FileCheck -check-prefix=CHECK-DEBUG-COMPILATION-DIR %s4// RUN: %clang -### -S -fdebug-compilation-dir=. %s 2>&1 | FileCheck -check-prefix=CHECK-DEBUG-COMPILATION-DIR %s5// RUN: %clang -### -integrated-as -fdebug-compilation-dir . -x assembler %s 2>&1 | FileCheck -check-prefix=CHECK-DEBUG-COMPILATION-DIR %s6// RUN: %clang -### -integrated-as -fdebug-compilation-dir=. -x assembler %s 2>&1 | FileCheck -check-prefix=CHECK-DEBUG-COMPILATION-DIR %s7// RUN: %clang -### -S -ffile-compilation-dir=. %s 2>&1 | FileCheck -check-prefix=CHECK-DEBUG-COMPILATION-DIR %s8// RUN: %clang -### -integrated-as -ffile-compilation-dir=. -x assembler %s 2>&1 | FileCheck -check-prefixes=CHECK-DEBUG-COMPILATION-DIR %s9// CHECK-DEBUG-COMPILATION-DIR: "-fdebug-compilation-dir=."10// CHECK-DEBUG-COMPILATION-DIR-NOT: "-ffile-compilation-dir=."11 12// RUN: %clang -### -S %s -working-directory %S 2>&1 | FileCheck -check-prefix=CHECK-CWD %s13// RUN: cd %S14// RUN: %clang -### -S %s 2>&1 | FileCheck -check-prefix=CHECK-CWD %s15// CHECK-CWD: -fdebug-compilation-dir={{.*}}Driver16