1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
@rem plotmo/inst/slowtests/make.bat
@call test.plotmo.bat
@if %errorlevel% NEQ 0 goto err
@call test.printcall.bat
@if %errorlevel% NEQ 0 goto err
@call test.dots.bat
@if %errorlevel% NEQ 0 goto err
@call test.plotmo.dots.bat
@if %errorlevel% NEQ 0 goto err
@call test.plotmo.x.bat
@if %errorlevel% NEQ 0 goto err
@call test.plotmo.args.bat
@if %errorlevel% NEQ 0 goto err
@call test.degree.bat
@if %errorlevel% NEQ 0 goto err
@call test.modguide.bat
@if %errorlevel% NEQ 0 goto err
@call test.linmod.bat
@if %errorlevel% NEQ 0 goto err
@call test.fac.bat
@if %errorlevel% NEQ 0 goto err
@call test.plotmo3.bat
@if %errorlevel% NEQ 0 goto err
@call test.center.bat
@if %errorlevel% NEQ 0 goto err
@call test.plotres.bat
@if %errorlevel% NEQ 0 goto err
@call test.partdep.bat
@if %errorlevel% NEQ 0 goto err
@call test.unusual.vars.bat
@if %errorlevel% NEQ 0 goto err
@call test.non.earth.bat
@if %errorlevel% NEQ 0 goto err
@rem The following miscellaneous models are in alphabetical order
@call test.c50.bat
@if %errorlevel% NEQ 0 goto err
@call test.caret.bat
@if %errorlevel% NEQ 0 goto err
@call test.gbm.bat
@if %errorlevel% NEQ 0 goto err
@call test.glmnet.bat
@if %errorlevel% NEQ 0 goto err
@call test.glmnetUtils.bat
@if %errorlevel% NEQ 0 goto err
@call test.mlr.bat
@if %errorlevel% NEQ 0 goto err
@call test.parsnip.bat
@if %errorlevel% NEQ 0 goto err
@call test.partykit.bat
@if %errorlevel% NEQ 0 goto err
@call test.pre.bat
@if %errorlevel% NEQ 0 goto err
@rem we also run the earth package tests in \a\r\earth\inst\slowtests\make.bat
@cd \a\r\earth\inst\slowtests
@if %errorlevel% NEQ 0 goto err
@call make.bat
@if %errorlevel% NEQ 0 goto err
@cd \a\r\plotmo\inst\slowtests
@goto done
:err
@echo ==== ERROR ====
:done
@exit /B 0
|