How to abort RQM execution automatically
![](http://jazz.net/_images/myphoto/a79a990fc7db9951d3e017abb2b6d0b7.jpg)
Hello,
I'm using RQM execution tool to execute test suites in RQM, but I want to abort execution automatically - aborting the process of RQM execution tool is not enough (ABORT=
ps axf | grep '[j]ava -jar RQMExecutionTool.jar' | grep -v grep | awk '{print "kill -9 " $1}' | sh
).
it's not enough cause I still see the script that was ran from the test script running in the background and the execution still in progress in RQM web.
how do I automatically (REST API etc) terminate an execution properly?
please help!
Comments
Donald Nong
Jul 03 '17, 3:43 a.m.Is it automatically or programmatically? If the test script is still running, how do you determine you should end it? I suppose you should receive some signals or messages from the script already?
sara chason
Jul 03 '17, 4:08 a.m.I meant programmatically..