Skip to content

Commit 5313fdf

Browse files
authored
Merge pull request #84637 from ramonasuncion/test-concurrency-deinit-paths
[Test][Concurrency] Clean up framework input paths in deinit_isolation_import test
2 parents d58dd6e + a638c9d commit 5313fdf

File tree

1 file changed

+4
-5
lines changed
  • test/Concurrency/deinit_isolation_import

1 file changed

+4
-5
lines changed

test/Concurrency/deinit_isolation_import/test.swift

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
// RUN: %empty-directory(%t/Frameworks)
2-
// RUN: INPUT_DIR=%S/Inputs
3-
// RUN: cp -R $INPUT_DIR/Alpha.framework %t/Frameworks/
2+
// RUN: cp -R %S/Inputs/Alpha.framework %t/Frameworks/
43
// RUN: %empty-directory(%t/Frameworks/Alpha.framework/Modules/Alpha.swiftmodule)
54
// RUN: %empty-directory(%t/Frameworks/Alpha.framework/Headers/)
65
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -disable-implicit-string-processing-module-import -parse-as-library -disable-availability-checking -module-name Alpha \
76
// RUN: -emit-module -o %t/Frameworks/Alpha.framework/Modules/Alpha.swiftmodule/%module-target-triple.swiftmodule \
87
// RUN: -enable-objc-interop -disable-objc-attr-requires-foundation-module \
9-
// RUN: -emit-objc-header -emit-objc-header-path %t/Frameworks/Alpha.framework/Headers/Alpha-Swift.h $INPUT_DIR/Alpha.swift
10-
// RUN: cp -R $INPUT_DIR/Beta.framework %t/Frameworks/
8+
// RUN: -emit-objc-header -emit-objc-header-path %t/Frameworks/Alpha.framework/Headers/Alpha-Swift.h %S/Inputs/Alpha.swift
9+
// RUN: cp -R %S/Inputs/Beta.framework %t/Frameworks/
1110
// RUN: %empty-directory(%t/Frameworks/Beta.framework/Headers/)
12-
// RUN: cp $INPUT_DIR/Beta.h %t/Frameworks/Beta.framework/Headers/Beta.h
11+
// RUN: cp %S/Inputs/Beta.h %t/Frameworks/Beta.framework/Headers/Beta.h
1312
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -disable-implicit-string-processing-module-import -disable-availability-checking -typecheck -verify %s -F %t/Frameworks -F %clang-importer-sdk-path/frameworks
1413
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -disable-implicit-string-processing-module-import -disable-availability-checking -parse-as-library -emit-silgen -DSILGEN %s -F %t/Frameworks -F %clang-importer-sdk-path/frameworks | %FileCheck %s
1514
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -disable-implicit-string-processing-module-import -disable-availability-checking -parse-as-library -emit-silgen -DSILGEN %s -F %t/Frameworks -F %clang-importer-sdk-path/frameworks | %FileCheck -check-prefix=CHECK-SYMB %s

0 commit comments

Comments
 (0)