Bump version to 19.1.0git
[llvm-project.git] / clang-tools-extra / test / clang-query / errors.c
blob3b9059ab0257f4448a525ee60ad5cb1f2f1cf0c3
1 // RUN: not clang-query -c foo -c bar %s -- | FileCheck %s
2 // RUN: not clang-query -f %S/Inputs/foo.script %s -- | FileCheck %s
3 // RUN: not clang-query -f %S/Inputs/nonexistent.script %s -- 2>&1 | FileCheck --check-prefix=CHECK-NONEXISTENT %s
4 // RUN: not clang-query -c 'file %S/Inputs/nonexistent.script' %s -- 2>&1 | FileCheck --check-prefix=CHECK-NONEXISTENT-FILEQUERY %s
5 // RUN: not clang-query -c foo -f foo %s -- 2>&1 | FileCheck --check-prefix=CHECK-BOTH %s
7 // CHECK: unknown command: foo
8 // CHECK-NOT: unknown command: bar
10 // CHECK-NONEXISTENT: cannot open {{.*}}nonexistent.script
11 // CHECK-NONEXISTENT-FILEQUERY: cannot open {{.*}}nonexistent.script
12 // CHECK-BOTH: cannot specify both -c and -f