summaryrefslogtreecommitdiff
path: root/Chalice/tests/test-scripts/reg_test_all.bat
diff options
context:
space:
mode:
Diffstat (limited to 'Chalice/tests/test-scripts/reg_test_all.bat')
-rw-r--r--Chalice/tests/test-scripts/reg_test_all.bat24
1 files changed, 0 insertions, 24 deletions
diff --git a/Chalice/tests/test-scripts/reg_test_all.bat b/Chalice/tests/test-scripts/reg_test_all.bat
deleted file mode 100644
index 23aca316..00000000
--- a/Chalice/tests/test-scripts/reg_test_all.bat
+++ /dev/null
@@ -1,24 +0,0 @@
-@echo off
-
-setlocal EnableDelayedExpansion
-
-:: no-summary command line parameter
-set nosummary=0
-if "%1"=="-no-summary" (
- set nosummary=1
- SHIFT /1
-)
-
-set regtest="%~dp0\reg_test.bat"
-set t=0
-set c=0
-for /F %%f in ('dir *.chalice /b') do (
- call %regtest% -no-diff %%~nf %1 %2 %3 %4 %5 %6 %7 %8
- set /A c=!c!+!errorlevel!
- set /A t=!t!+1
-)
-if !nosummary!==0 (
- echo.
- if !c!==0 (echo SUMMARY: completed !t! tests successfully.) else (echo SUMMARY: failed !c! of !t! tests.)
-)
-exit /b !c!