Skip to content

Commit e113ef8

Browse files
committedMar 20, 2019
Add a mode to test implicit dynamic with private imports
1 parent 384882d commit e113ef8

File tree

109 files changed

+330
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+330
-7
lines changed
 

‎test/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ set(profdata_merge_worker
135135

136136
set(TEST_MODES
137137
optimize_none optimize optimize_unchecked optimize_size
138+
optimize_none_with_implicit_dynamic
138139
only_executable only_non_executable
139140
)
140141
set(TEST_SUBSETS

‎test/IRGen/report_dead_method_call.swift

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
// RUN: %target-run %t/report_dead_method_call
1212
// REQUIRES: executable_test
1313

14+
// UNSUPPORTED: swift_test_mode_optimize_none_with_implicit_dynamic
15+
1416
private protocol PrivateProto {
1517
func abc()
1618
}

0 commit comments

Comments
 (0)
Please sign in to comment.