forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolve-crashes.py
executable file
·41 lines (32 loc) · 1.4 KB
/
resolve-crashes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# A small utility to take the output of a Swift validation test run
# where some compiler crashers have been fixed, and move them into the
# "fixed" testsuite, removing the "--crash" in the process.
import re
import sys
import os
def execute_cmd(cmd):
print(cmd)
os.system(cmd)
# The regular expression we use to match compiler-crasher lines.
regex = re.compile('.*Swift :: compiler_crashers(|_2)/(.*\.swift).*')
# Take the output of lit as standard input.
for line in sys.stdin:
match = regex.match(line)
if match:
suffix=match.group(1)
filename=match.group(2)
# Move the test over to the fixed suite.
from_filename = 'validation-test/compiler_crashers%s/%s' % (suffix, filename)
to_filename = 'validation-test/compiler_crashers%s_fixed/%s' % (suffix, filename)
git_mv_cmd = 'git mv %s %s' % (from_filename, to_filename)
execute_cmd(git_mv_cmd)
# Replace "not --crash" with "not", and remove XFAIL lines.
sed_replace_not_cmd = 'sed -e "s/not --crash/not/" -i "" %s' % (to_filename)
execute_cmd(sed_replace_not_cmd)
# Remove "// XFAIL: whatever" lines.
sed_remove_xfail_cmd = 'sed -e "s/^\\/\\/.*XFAIL.*$//g" -i "" %s' % (to_filename)
execute_cmd(sed_remove_xfail_cmd)
# "git add" the result.
git_add_cmd = 'git add %s' % (to_filename)
execute_cmd(git_add_cmd)