]> granicus.if.org Git - clang/blob - test/Frontend/dependency-gen-escaping.c
Simplify depfile quoting test.
[clang] / test / Frontend / dependency-gen-escaping.c
1 // PR15642
2 // RUN: %clang -M -MG %s | FileCheck -strict-whitespace %s
3 // RUN: %clang -M -MG -MV %s | FileCheck -strict-whitespace %s --check-prefix=NMAKE
4
5 // CHECK: \ \ \ \ .h
6 // CHECK: $$$$.h
7 // CHECK: \#\#.h
8 // NMAKE: "    .h"
9 // NMAKE: "$$.h"
10 // NMAKE: "##.h"
11 // NMAKE-NOT: "
12 // NMAKE: normal.h
13 // NMAKE-NOT: "
14
15 #include "    .h"
16 #include "$$.h"
17 #include "##.h"
18 #include "normal.h"