We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cfcb55 commit d7a95e7Copy full SHA for d7a95e7
utils/resolve-crashes.py
@@ -15,15 +15,15 @@ def execute_cmd(cmd):
15
16
# The regular expression we use to match compiler-crasher lines.
17
regex = re.compile(
18
- '.*Swift :: '
+ '.*Swift(.*) :: '
19
'(compiler_crashers|compiler_crashers_2|IDE/crashers)/(.*\.swift).*')
20
21
# Take the output of lit as standard input.
22
for line in sys.stdin:
23
match = regex.match(line)
24
if match:
25
- suffix = match.group(1)
26
- filename = match.group(2)
+ suffix = match.group(2)
+ filename = match.group(3)
27
28
# Move the test over to the fixed suite.
29
from_filename = 'validation-test/%s/%s' % (suffix, filename)
0 commit comments