]> git.lizzy.rs Git - rust.git/blob - src/etc/generate-keyword-tests.py
Auto merge of #67112 - Centril:expr-polish, r=estebank
[rust.git] / src / etc / generate-keyword-tests.py
1 #!/usr/bin/env python
2
3 """
4 This script takes a list of keywords and generates a testcase, that checks
5 if using the keyword as identifier fails, for every keyword. The generate
6 test files are set read-only.
7 Test for https://github.com/rust-lang/rust/issues/2275
8
9 sample usage: src/etc/generate-keyword-tests.py as break
10 """
11
12 import sys
13 import os
14 import datetime
15 import stat
16
17
18 template = """\
19 // This file was auto-generated using 'src/etc/generate-keyword-tests.py %s'
20
21 fn main() {
22     let %s = "foo"; //~ error: expected pattern, found keyword `%s`
23 }
24 """
25
26 test_dir = os.path.abspath(
27     os.path.join(os.path.dirname(__file__), '../test/ui/parser')
28 )
29
30 for kw in sys.argv[1:]:
31     test_file = os.path.join(test_dir, 'keyword-%s-as-identifier.rs' % kw)
32
33     # set write permission if file exists, so it can be changed
34     if os.path.exists(test_file):
35         os.chmod(test_file, stat.S_IWUSR)
36
37     with open(test_file, 'wt') as f:
38         f.write(template % (kw, kw, kw))
39
40     # mark file read-only
41     os.chmod(test_file, stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)