File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 3f80d06c91520a675f63010f153a4e48b54b16f7
2
+ refs/heads/master: 8e87833956f9015f2ad9b4af521bbd994c1a4e58
3
3
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
4
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
Original file line number Diff line number Diff line change @@ -1339,6 +1339,10 @@ else:
1339
1339
config .substitutions .insert (0 , ('%platform-module-dir' , platform_module_dir ))
1340
1340
config .substitutions .insert (0 , ('%platform-sdk-overlay-dir' , platform_sdk_overlay_dir ))
1341
1341
1342
+ if run_vendor != 'apple' :
1343
+ extra_frameworks_dir = ''
1344
+ config .substitutions .append (('%xcode-extra-frameworks-dir' , extra_frameworks_dir ))
1345
+
1342
1346
config .substitutions .append (('%target-swiftmodule-name' , run_cpu + '.swiftmodule' ))
1343
1347
config .substitutions .append (('%target-swiftdoc-name' , run_cpu + '.swiftdoc' ))
1344
1348
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/python
2
2
# RUN: ${python} %s %target-swiftmodule-name %platform-sdk-overlay-dir \
3
- # RUN: %target-sil-opt -sdk %sdk -enable-sil-verify-all
3
+ # RUN: %target-sil-opt -sdk %sdk -enable-sil-verify-all \
4
+ # RUN: -F "%xcode-extra-frameworks-dir"
4
5
5
6
# REQUIRES: long_test
6
7
# REQUIRES: nonexecutable_test
7
8
8
- # XFAIL: OS=macosx || OS=ios || OS=tvos
9
+ # XFAIL: OS=macosx
9
10
# https://bugs.swift.org/browse/SR-9847
10
11
11
12
from __future__ import print_function
22
23
module_name , ext = os .path .splitext (module_file )
23
24
if ext != ".swiftmodule" :
24
25
continue
26
+ # Skip the standard library because it's tested elsewhere.
25
27
if module_name == "Swift" :
26
28
continue
27
29
print ("# " + module_name )
You can’t perform that action at this time.
0 commit comments