mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

boli
31.06.2007 c671293b4d6c4eef672c2c2c8d0885d7e6dc1aac
1
2
3
4
5
6
7
8
9
10
11
@echo off
echo Backing configuration up
move "${tests.config}" "${tests.config.backup}"
echo Loading configuration as of ${tests.run.time}
copy "${tests.run.dir}${file.separator}${tests.run.time}${file.separator}config${file.separator}${tests.config.file}" "${tests.config}"
echo Starting test run
"${staf.install.dir}${file.separator}bin${file.separator}STAF.exe" local STAX "${tests.request}"
echo Removing configuration of ${tests.run.time}
del /f "${tests.config}"
echo Restoring original configuration
move "${tests.config.backup}" "${tests.config}"