File: cl-pch.c

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-16
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,496,368 kB
  • sloc: cpp: 5,593,980; ansic: 986,873; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,547; xml: 953; cs: 573; fortran: 567
file content (46 lines) | stat: -rw-r--r-- 1,808 bytes parent folder | download | duplicates (29)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// REQUIRES: system-windows
//
// RUN: rm -rf %t
// RUN: mkdir %t
//
// Note: %s and %S must be preceded by --, otherwise it may be interpreted as a
// command-line option, e.g. on Mac where %s is commonly under /Users.

// The main test for clang-cl pch handling is cl-pch.cpp.  This file only checks
// a few things for .c inputs.

// /Yc with a .c file should build a c pch file.
// RUN: %clang_cl -Werror /Yc%S/Inputs/pchfile.h /FI%S/Inputs/pchfile.h /c /Fo%t/pchfile.obj /Fp%t/pchfile.pch -v -- %s 2>&1 \
// RUN:   | FileCheck -check-prefix=CHECK-YC %s
// CHECK-YC: cc1{{.* .*}}-emit-pch
// CHECK-YC-SAME: -o
// CHECK-YC-SAME: pchfile.pch
// CHECK-YC-SAME: -x
// CHECK-YC-SAME: c-header

// But not if /TP changes the input language to C++.
// RUN: %clang_cl /TP -Werror /Yc%S/Inputs/pchfile.h /FI%S/Inputs/pchfile.h /c /Fo%t/pchfile.obj /Fp%t/pchfile.pch -v -- %s 2>&1 \
// RUN:   | FileCheck -check-prefix=CHECK-YCTP %s
// CHECK-YCTP: cc1{{.* .*}}-emit-pch
// CHECK-YCTP-SAME: -o
// CHECK-YCTP-SAME: pchfile.pch
// CHECK-YCTP-SAME: -x
// CHECK-YCTP-SAME: c++-header

// Except if a later /TC changes it back.
// RUN: %clang_cl -Werror /Yc%S/Inputs/pchfile.h /FI%S/Inputs/pchfile.h /c /Fo%t/pchfile.obj /Fp%t/pchfile.pch -v -- %s 2>&1 \
// RUN:   | FileCheck -check-prefix=CHECK-YCTPTC %s
// CHECK-YCTPTC: cc1{{.* .*}}-emit-pch
// CHECK-YCTPTC-SAME: -o
// CHECK-YCTPTC-SAME: pchfile.pch
// CHECK-YCTPTC-SAME: -x
// CHECK-YCTPTC-SAME: c-header

// Also check lower-case /Tp flag.
// RUN: %clang_cl -Werror /Tp%s /Yc%S/Inputs/pchfile.h /FI%S/Inputs/pchfile.h /c /Fo%t/pchfile.obj /Fp%t/pchfile.pch -v 2>&1 \
// RUN:   | FileCheck -check-prefix=CHECK-YCTp %s
// CHECK-YCTp: cc1{{.* .*}}-emit-pch
// CHECK-YCTp-SAME: -o
// CHECK-YCTp-SAME: pchfile.pch
// CHECK-YCTp-SAME: -x
// CHECK-YCTp-SAME: c++-header