Skip to content

Commit 0e86caa

Browse files
committed
---
yaml --- r: 346865 b: refs/heads/master c: 9ec0a6c h: refs/heads/master i: 346863: 944dd1d
1 parent eff0792 commit 0e86caa

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
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: 4c487b74583a66c3e0e8509706f2813ab227642c
2+
refs/heads/master: 9ec0a6cf8039bd87c1a27235f91085be36ce3f9a
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/PrintAsObjC/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ config.substitutions.insert(0, ('%check-in-clang',
55
'%%clang -fsyntax-only -x objective-c-header -fobjc-arc -fmodules '
66
'-fmodules-validate-system-headers '
77
'-Weverything -Werror -Wno-unused-macros -Wno-incomplete-module '
8-
'-Wno-auto-import -Wno-objc-property-assign-on-object-type '
8+
'-Wno-auto-import '
99
'-F %%clang-importer-sdk-path/frameworks '
1010
'-I %%clang-include-dir '
1111
'-isysroot %r/Inputs/clang-importer-sdk' % config.test_source_root) )

trunk/utils/round-trip-syntax-test

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,9 @@ class RoundTripTask(object):
7676

7777
contents = ''.join(map(lambda l: l.decode('utf-8', errors='replace'),
7878
open(self.input_filename).readlines()))
79-
stdout_contents = self.stdout.decode('utf-8', errors='replace')
80-
81-
if contents == stdout_contents:
82-
return None
83-
84-
lines = difflib.unified_diff(contents, stdout_contents,
79+
lines = difflib.unified_diff(contents,
80+
self.stdout.decode('utf-8',
81+
errors='replace'),
8582
fromfile=self.input_filename,
8683
tofile='-')
8784
diff = '\n'.join(line for line in lines)

0 commit comments

Comments
 (0)