Skip to content

Commit 66c90f6

Browse files
committed
---
yaml --- r: 347033 b: refs/heads/master c: 8e87833 h: refs/heads/master i: 347031: 03da816
1 parent 93ae997 commit 66c90f6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 3f80d06c91520a675f63010f153a4e48b54b16f7
2+
refs/heads/master: 8e87833956f9015f2ad9b4af521bbd994c1a4e58
33
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea

trunk/test/lit.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,10 @@ else:
13391339
config.substitutions.insert(0, ('%platform-module-dir', platform_module_dir))
13401340
config.substitutions.insert(0, ('%platform-sdk-overlay-dir', platform_sdk_overlay_dir))
13411341

1342+
if run_vendor != 'apple':
1343+
extra_frameworks_dir = ''
1344+
config.substitutions.append(('%xcode-extra-frameworks-dir', extra_frameworks_dir))
1345+
13421346
config.substitutions.append(('%target-swiftmodule-name', run_cpu + '.swiftmodule'))
13431347
config.substitutions.append(('%target-swiftdoc-name', run_cpu + '.swiftdoc'))
13441348

trunk/validation-test/SIL/verify_all_overlays.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
#!/usr/bin/python
22
# 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"
45

56
# REQUIRES: long_test
67
# REQUIRES: nonexecutable_test
78

8-
# XFAIL: OS=macosx || OS=ios || OS=tvos
9+
# XFAIL: OS=macosx
910
# https://bugs.swift.org/browse/SR-9847
1011

1112
from __future__ import print_function
@@ -22,6 +23,7 @@
2223
module_name, ext = os.path.splitext(module_file)
2324
if ext != ".swiftmodule":
2425
continue
26+
# Skip the standard library because it's tested elsewhere.
2527
if module_name == "Swift":
2628
continue
2729
print("# " + module_name)

0 commit comments

Comments
 (0)