File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11// RUN: %empty-directory(%t)
2- // RUN: %{python} %utils/split_file.py -o %t %s
2+ // RUN: split-file %s %t
33
44// RUN: %target-swift-frontend -emit-module -I %t -o %t/MyModuleA.swiftmodule %t/MyModuleA.swift -enable-experimental-feature Embedded -parse-as-library
55// RUN: %target-swift-frontend -emit-module -I %t -o %t/MyModuleB.swiftmodule %t/MyModuleB.swift -enable-experimental-feature Embedded -parse-as-library
1616// ModuleA ◀──┤ ├─── Main
1717// └─── ModuleC ◀─┘
1818
19- // BEGIN MyModuleA.swift
19+ //--- MyModuleA.swift
2020
2121public var global = 0
2222
2323public func foo( ) { global += 1 }
2424
25- // BEGIN MyModuleB.swift
25+ //--- MyModuleB.swift
2626
2727import MyModuleA
2828
2929public func foo( ) { global += 1 }
3030
31- // BEGIN MyModuleC.swift
31+ //--- MyModuleC.swift
3232
3333import MyModuleA
3434
3535public func foo( ) { global += 1 }
3636
37- // BEGIN Main.swift
37+ //--- Main.swift
3838
3939import MyModuleB
4040import MyModuleC
You can’t perform that action at this time.
0 commit comments