File tree Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Expand file tree Collapse file tree 4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ // RUN: rm -rf %t && mkdir -p %t
2
+ // RUN: %target-build-swift -O -g -module-name foo -emit-module %s -o %t/run-1.module
3
+ // RUN: %target-build-swift -O -g -module-name foo -emit-module %s -o %t/run-2.module
4
+ // RUN: cmp %t/run-1.module %t/run-2.module
5
+ // RUN: cmp %t/run-1.swiftdoc %t/run-2.swiftdoc
6
+ print ( " foo " )
Original file line number Diff line number Diff line change
1
+ // RUN: rm -rf %t && mkdir -p %t
2
+ // RUN: %target-build-swift -O -g -module-name foo -emit-sib %s -o %t/run-1.sib
3
+ // RUN: %target-build-swift -O -g -module-name foo -emit-sib %s -o %t/run-2.sib
4
+ // RUN: cmp %t/run-1.sib %t/run-2.sib
5
+ print ( " foo " )
Original file line number Diff line number Diff line change
1
+ // RUN: rm -rf %t && mkdir -p %t
2
+ // RUN: %target-build-swift -O -g -module-name foo -emit-sibgen %s -o %t/run-1.sibgen
3
+ // RUN: %target-build-swift -O -g -module-name foo -emit-sibgen %s -o %t/run-2.sibgen
4
+ // RUN: cmp %t/run-1.sibgen %t/run-2.sibgen
5
+ print ( " foo " )
Original file line number Diff line number Diff line change
1
+ // RUN: rm -rf %t && mkdir -p %t
2
+ // RUN: %target-build-swift -O -g -module-name foo -emit-tbd %s -o %t/run-1.tbd
3
+ // RUN: %target-build-swift -O -g -module-name foo -emit-tbd %s -o %t/run-2.tbd
4
+ // RUN: diff -u %t/run-1.tbd %t/run-2.tbd
5
+ print ( " foo " )
You can’t perform that action at this time.
0 commit comments