aboutsummaryrefslogtreecommitdiff
path: root/test/Frontend/dependency-gen.c
blob: 75b9dd4485e7e3bdbdfc0cc72701b869394def64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// rdar://6533411
// RUN: %clang -MD -MF %t.d -S -x c -o %t.o %s
// RUN: grep '.*dependency-gen.*:' %t.d
// RUN: grep 'dependency-gen.c' %t.d

// RUN: %clang -S -M -x c %s -o %t.d
// RUN: grep '.*dependency-gen.*:' %t.d
// RUN: grep 'dependency-gen.c' %t.d

// PR8974
// RUN: mkdir %t.dir
// RUN: echo > %t.dir/x.h
// RUN: %clang -include %t.dir/x.h -MD -MF %t.d -S -x c -o %t.o %s
// RUN: grep ' %t.dir/x.h' %t.d