diff --git a/test/Makefile b/test/Makefile index f5d663cf..c37ccf10 100644 --- a/test/Makefile +++ b/test/Makefile @@ -20,7 +20,7 @@ check: $(MAKE) check-$$PYTHON_VERSION #: Run working tests from Python 2.6 or 2.7 -check-2.6 check-2.7: check-bytecode check-2.7-ok +check-2.6 check-2.7: check-bytecode-sans-3.5 check-2.7-ok #: Run working tests from Python 3.3 check-3.3: check-bytecode @@ -46,6 +46,11 @@ check-bytecode: $(PYTHON) test_pythonlib.py --bytecode-2.5 --bytecode-2.6 --bytecode-2.7 \ --bytecode-3.2 --bytecode-3.3 --bytecode-3.4 --bytecode-3.5 +#: Check deparsing bytecode only +check-bytecode-sans-3.5: + $(PYTHON) test_pythonlib.py --bytecode-2.5 --bytecode-2.6 --bytecode-2.7 \ + --bytecode-3.2 --bytecode-3.3 --bytecode-3.4 + #: Check deparsing Python 2.5 check-bytecode-2.5: $(PYTHON) test_pythonlib.py --bytecode-2.5 diff --git a/test/bytecode_3.4/02_closure.pyc b/test/bytecode_3.4/02_closure.pyc deleted file mode 100644 index 705f374f..00000000 Binary files a/test/bytecode_3.4/02_closure.pyc and /dev/null differ