From 51e32b88a44910fbdfc34d5df697b5493a43cf3f Mon Sep 17 00:00:00 2001 From: rocky Date: Fri, 31 Dec 2021 11:39:57 -0500 Subject: [PATCH] Include 2.4_run, 2.5_run in testing --- test/Makefile | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/test/Makefile b/test/Makefile index c32bf96c..53580600 100644 --- a/test/Makefile +++ b/test/Makefile @@ -182,12 +182,24 @@ check-bytecode-2.3: #: Check deparsing Python 2.4 check-bytecode-2.4: + $(PYTHON) test_pythonlib.py --bytecode-2.4-run --verify-run $(PYTHON) test_pythonlib.py --bytecode-2.4 #: Check deparsing Python 2.5 check-bytecode-2.5: + $(PYTHON) test_pythonlib.py --bytecode-2.5-run --verify-run $(PYTHON) test_pythonlib.py --bytecode-2.5 +#: Check deparsing Python 2.6 +check-bytecode-2.6: + $(PYTHON) test_pythonlib.py --bytecode-2.6-run --verify-run + $(PYTHON) test_pythonlib.py --bytecode-2.6 --syntax-verify + +#: Check deparsing Python 2.7 +check-bytecode-2.7: + $(PYTHON) test_pythonlib.py --bytecode-2.7-run --verify-run + $(PYTHON) test_pythonlib.py --bytecode-2.7 --syntax-verify + #: Get grammar coverage for Python 2.4 grammar-coverage-2.4: -rm $(COVER_DIR)/spark-grammar-24.cover @@ -260,16 +272,6 @@ grammar-coverage-3.7: rm $(COVER_DIR)/spark-grammar-3.7.cover || /bin/true SPARK_PARSER_COVERAGE=$(COVER_DIR)/spark-grammar-3.7.cover $(PYTHON) test_pyenvlib.py --3.7.3 --max=500 -#: Check deparsing Python 2.6 -check-bytecode-2.6: - $(PYTHON) test_pythonlib.py --bytecode-2.6-run --verify-run - $(PYTHON) test_pythonlib.py --bytecode-2.6 --syntax-verify - -#: Check deparsing Python 2.7 -check-bytecode-2.7: - $(PYTHON) test_pythonlib.py --bytecode-2.7-run --verify-run - $(PYTHON) test_pythonlib.py --bytecode-2.7 --syntax-verify - #: Check deparsing Python 3.0 check-bytecode-3.0: $(PYTHON) test_pythonlib.py --bytecode-3.0-run --verify-run