aboutsummaryrefslogtreecommitdiff
path: root/test/Frontend/dependency-gen-escaping.c
blob: 84eb242ec3c90e3515cda178ba7b16210db4332c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// REQUIRES: shell
// PR15642
// RUN: rm -rf %t.dir
// RUN: mkdir -p %t.dir
// RUN: echo > '%t.dir/    .h'
// RUN: echo > '%t.dir/$$.h'
// RUN: echo > '%t.dir/##.h'
// RUN: cd %t.dir
// RUN: %clang -MD -MF - %s -fsyntax-only -I. | FileCheck -strict-whitespace %s

// CHECK: \ \ \ \ .h
// CHECK: $$$$.h
// CHECK: \#\#.h

#include "    .h"
#include "$$.h"
#include "##.h"