File: SystemDependencies.swiftinterface

package info (click to toggle)
swiftlang 6.1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 2,791,644 kB
  • sloc: cpp: 9,901,738; ansic: 2,201,433; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (55 lines) | stat: -rw-r--r-- 3,299 bytes parent folder | download | duplicates (3)
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
47
48
49
50
51
52
53
54
55
// swift-interface-format-version: 1.0
// swift-module-flags: -module-name SystemDependencies

// RUN: %empty-directory(%t)
// RUN: cp -r %S/Inputs/mock-sdk %t/mock-sdk

// RUN: echo 'import SystemDependencies' | %target-swift-frontend -typecheck - -I %S -sdk %t/mock-sdk -module-cache-path %t/MCP -emit-dependencies-path %t/dummy.d
// RUN: test -f %t/MCP/SystemDependencies*.swiftmodule
// RUN: %FileCheck -check-prefix NEGATIVE %s < %t/dummy.d
// RUN: %{python} %S/Inputs/make-old.py %t/MCP/SystemDependencies*.swiftmodule

// Baseline: running the same command again doesn't rebuild the cached module.
// RUN: echo 'import SystemDependencies' | %target-swift-frontend -typecheck - -I %S -sdk %t/mock-sdk -module-cache-path %t/MCP -emit-dependencies-path %t/dummy.d
// RUN: %{python} %S/Inputs/check-is-old.py %t/MCP/SystemDependencies*.swiftmodule

// Now try changing the contents.
// RUN: echo "// size change" >> %t/mock-sdk/usr/include/SomeCModule.h
// RUN: echo 'import SystemDependencies' | %target-swift-frontend -typecheck - -I %S -sdk %t/mock-sdk -module-cache-path %t/MCP -emit-dependencies-path %t/dummy.d
// RUN: %{python} %S/Inputs/check-is-old.py %t/MCP/SystemDependencies*.swiftmodule

// Okay, now let's try again with system dependency tracking on.
// RUN: echo 'import SystemDependencies' | %target-swift-frontend -typecheck - -I %S -sdk %t/mock-sdk -module-cache-path %t/MCP-system -emit-dependencies-path %t/dummy.d -track-system-dependencies
// RUN: test -f %t/MCP-system/SystemDependencies*.swiftmodule
// RUN: %FileCheck -check-prefix CHECK %s < %t/dummy.d
// RUN: llvm-bcanalyzer -dump %t/MCP-system/SystemDependencies*.swiftmodule | %FileCheck -check-prefix CHECK-DUMP %s
// RUN: %{python} %S/Inputs/make-old.py %t/MCP-system/SystemDependencies*.swiftmodule

// Baseline: running the same command again doesn't rebuild the cached module.
// RUN: echo 'import SystemDependencies' | %target-swift-frontend -typecheck - -I %S -sdk %t/mock-sdk -module-cache-path %t/MCP-system -emit-dependencies-path %t/dummy.d -track-system-dependencies
// RUN: %{python} %S/Inputs/check-is-old.py %t/MCP-system/SystemDependencies*.swiftmodule

// Now try changing the contents.
// RUN: echo "// size change" >> %t/mock-sdk/usr/include/SomeCModule.h
// RUN: echo 'import SystemDependencies' | %target-swift-frontend -typecheck - -I %S -sdk %t/mock-sdk -module-cache-path %t/MCP-system -emit-dependencies-path %t/dummy.d -track-system-dependencies
// RUN: %{python} %S/Inputs/check-is-new.py %t/MCP-system/SystemDependencies*.swiftmodule

// Check that it picked a different cache key.
// RUN: %empty-directory(%t/MCP-combined)
// RUN: cp %t/MCP/SystemDependencies*.swiftmodule %t/MCP-combined
// RUN: cp %t/MCP-system/SystemDependencies*.swiftmodule %t/MCP-combined
// RUN: ls -1 %t/MCP-combined | %FileCheck %s -check-prefix=MODULECACHE

// NEGATIVE-NOT: SomeCModule.h
// CHECK: SomeCModule.h

// CHECK-DUMP-NOT: usr{{[/\\]}}include
// CHECK-DUMP: DEPENDENCY_DIRECTORY{{.+}}'usr{{[/\\]}}include'
// CHECK-DUMP-NEXT: FILE_DEPENDENCY{{.+}}'module.modulemap'
// CHECK-DUMP-NOT: FILE_DEPENDENCY{{.+}}'SomeCModule.h'
// CHECK-DUMP: FILE_DEPENDENCY{{.+}}'SomeCModule.h'
// CHECK-DUMP-NOT: usr{{[/\\]}}include

// MODULECACHE-COUNT-2: SystemDependencies-{{[^ ]+}}.swiftmodule

import SomeCModule