diff options
Diffstat (limited to 'allcoverage.cmd')
| -rw-r--r-- | allcoverage.cmd | 49 |
1 files changed, 12 insertions, 37 deletions
diff --git a/allcoverage.cmd b/allcoverage.cmd index 2545427..5d80b4f 100644 --- a/allcoverage.cmd +++ b/allcoverage.cmd @@ -1,44 +1,19 @@ @echo off
make --quiet testdata
-call \ned\bin\switchpy 23
-python setup.py -q develop
-set COVERAGE_TEST_TRACER=c
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
-del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
+del .coverage.*
+set COVERAGE_PROCESS_START=c:\ned\coverage\trunk\covcov.ini
+set COVERAGE_COVERAGE=1
-call \ned\bin\switchpy 24
-python setup.py -q develop
-set COVERAGE_TEST_TRACER=c
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
-del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
+for %%v in (23 24 25 26 27 31) do (
+ call \ned\bin\switchpy %%v
+ python setup.py -q develop
+ set COVERAGE_TEST_TRACER=c
+ python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
+ del coverage\tracer.pyd
+ )
-call \ned\bin\switchpy 25
-python setup.py -q develop
-set COVERAGE_TEST_TRACER=c
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
-del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
-
-call \ned\bin\switchpy 26
-python setup.py -q develop
-set COVERAGE_TEST_TRACER=c
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
-del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
-
-call \ned\bin\switchpy 31
-python setup.py -q develop
-set COVERAGE_TEST_TRACER=c
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
-del coverage\tracer.pyd
-set COVERAGE_TEST_TRACER=py
-python test\coverage_coverage.py run %1 %2 %3 %4 %5 %6 %7 %8 %9
+set COVERAGE_PROCESS_START=
+set COVERAGE_COVERAGE=
python test\coverage_coverage.py report
|
