diff options
author | William Blevins <wblevins001@gmail.com> | 2016-11-29 01:25:38 (GMT) |
---|---|---|
committer | William Blevins <wblevins001@gmail.com> | 2016-11-29 01:25:38 (GMT) |
commit | 055dc8f39e8b0d175a7acdd5977bb35b152ad170 (patch) | |
tree | ef23a36453bb12cbc8ffdbe0b2f371c2d6b5bb36 /test/CC | |
parent | daab400692d467faf2af7ac035cc00a15711ce82 (diff) | |
download | SCons-055dc8f39e8b0d175a7acdd5977bb35b152ad170.zip SCons-055dc8f39e8b0d175a7acdd5977bb35b152ad170.tar.gz SCons-055dc8f39e8b0d175a7acdd5977bb35b152ad170.tar.bz2 |
Fixing merge conflict resolution: removed old test files.
Diffstat (limited to 'test/CC')
-rw-r--r-- | test/CC/shared-fixture/.exclude_tests | 1 | ||||
-rw-r--r-- | test/CC/shared-fixture/mycc.py | 6 | ||||
-rw-r--r-- | test/CC/shared-fixture/test1.c | 2 |
3 files changed, 0 insertions, 9 deletions
diff --git a/test/CC/shared-fixture/.exclude_tests b/test/CC/shared-fixture/.exclude_tests deleted file mode 100644 index 3f2bc0f..0000000 --- a/test/CC/shared-fixture/.exclude_tests +++ /dev/null @@ -1 +0,0 @@ -mycc.py 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) diff --git a/test/CC/shared-fixture/test1.c b/test/CC/shared-fixture/test1.c deleted file mode 100644 index 9c281d7..0000000 --- a/test/CC/shared-fixture/test1.c +++ /dev/null @@ -1,2 +0,0 @@ -test1.c -/*cc*/ |