Add new syntax to support running background tasks. Stop the background job on exit.
BG "workload_runner" "./workload.sh /mnt/vol1"
Using the name, stop the Background task when needed.
BG_STOP "workload_runner"
Send signal to the background process
BG_SIGNAL "workload_runner", "SIGHUP"
In between other tests, check if background process is running or not when needed.
BG_RUNNING? "workload_runner"
Add new syntax to support running background tasks. Stop the background job on exit.
Using the name, stop the Background task when needed.
Send signal to the background process
In between other tests, check if background process is running or not when needed.