You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will be very useful to have timeout for running the tests using testrunner.
Problem
As it is for now, if one of the test cases gets blocked, the testrunner is blocked too and no more tests are running until the CTRL+C is pressed from the testrunner terminal.
Suggestion
to add --timeout <seconds> param to the testrunner
Add the `timeout' property /tag to the test suite xml file:
<?xml version="1.0" encoding="UTF-8"?>
<suitname="my suit">
<description> a simple example </description>
<!-- default timeout for all tests -->
<timeout> 5.0 </timeout>
<testtype="dll"> mytest2 </test>
...
<!-- timeout for a specific test -->
<testtype="dll"timeout="10.0"> mytest1 </test>
...
</suit>
The text was updated successfully, but these errors were encountered:
It will be very useful to have
timeout
for running the tests usingtestrunner
.Problem
As it is for now, if one of the test cases gets blocked, the
testrunner
is blocked too and no more tests are running until theCTRL+C
is pressed from thetestrunner
terminal.Suggestion
--timeout <seconds>
param to thetestrunner
The text was updated successfully, but these errors were encountered: