From 43d9a7de9b83f437d55c2cbc6e9625e3fafa5102 Mon Sep 17 00:00:00 2001 From: grischka Date: Mon, 13 Feb 2017 19:03:29 +0100 Subject: updates & cleanups (tcc-doc/Changelog/TODO ...) - tcc-doc.texi: commandline option info update - Changelog/TODO: update - tests/tcctest.py: removed - tests/Makefile: weaktest fixed - tests/tests2: some files renamed and/or converted to unix LF - configure/Makefile: --enable-static option (no dll on win32) - win32/build-tcc.bat: msvc support - win32/tcc-win32.txt: build info update - win32/vs2015/: VS solution removed - win32/include/tcc/tcc_libm.h: #include statement fixed - tcc.c: -include option help info - .gitignore: cleanup --- tests/tcctest.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 tests/tcctest.py (limited to 'tests/tcctest.py') diff --git a/tests/tcctest.py b/tests/tcctest.py deleted file mode 100644 index 817250f..0000000 --- a/tests/tcctest.py +++ /dev/null @@ -1,15 +0,0 @@ -import subprocess -import sys -import difflib - -def main(): - reference = subprocess.check_output([sys.argv[1]]) - compare = subprocess.check_output(sys.argv[2:]) - failed = False - for line in difflib.unified_diff(reference.split('\n'), compare.split('\n'), fromfile='cc', tofile='tcc', lineterm=''): - failed = True - print line - sys.exit(1 if failed else 0) - -if __name__ == '__main__': - main() -- cgit v1.3.1