I am trying to write a batch script that executes:
start /B /W %JmeterPath%\bin\jmeter.bat -n -t one.jmx -j one.log
and after completion of this execution, run these two commands in parallel:
start /B /W %JmeterPath%\bin\jmeter.bat -n -t two.jmx -j two.log
start /B /W %JmeterPath%\bin\jmeter.bat -n -t three.jmx -j three.log
I wrote the script as:
@echo off
SET JmeterPath=%1
echo "this is " %JmeterPath%
start /B /W %JmeterPath%\bin\jmeter.bat -n -t one.jmx -j one.log
PAUSE
start /B /W %JmeterPath%\bin\jmeter.bat -n -t two.jmx -j two.log
start /B /W %JmeterPath%\bin\jmeter.bat -n -t three.jmx -j three.log
PAUSE