diff options
Diffstat (limited to 'test/CC/shared-fixture/mycc.py')
-rw-r--r-- | test/CC/shared-fixture/mycc.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/CC/shared-fixture/mycc.py b/test/CC/shared-fixture/mycc.py deleted file mode 100644 index b96c31c..0000000 --- a/test/CC/shared-fixture/mycc.py +++ /dev/null @@ -1,6 +0,0 @@ -import sys -outfile = open(sys.argv[1], 'wb') -infile = open(sys.argv[2], 'rb') -for l in [l for l in infile.readlines() if l[:6] != b'/*cc*/']: - outfile.write(l) -sys.exit(0) |