rlexe.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <regress-exe>
  3. <test>
  4. <default>
  5. <!-- should timeout after default timeout or command line specified default timeout -->
  6. <files>%REGRESS%\longrunning.js</files>
  7. <tags>exclude_dynapogo</tags>
  8. </default>
  9. </test>
  10. <test>
  11. <default>
  12. <!-- should timeout after 3 seconds -->
  13. <files>%REGRESS%\mediumrunning.js</files>
  14. <timeout>3</timeout>
  15. <tags>exclude_dynapogo</tags>
  16. </default>
  17. </test>
  18. <test>
  19. <default>
  20. <!-- should timeout after 1 second; verify timeout works with command tag tests -->
  21. <files>%REGRESS%\mediumrunning.js</files>
  22. <command>%REGRESS%\runjsfile.cmd %REGRESS%\mediumrunning.js</command>
  23. <timeout>1</timeout>
  24. <tags>exclude_dynapogo</tags>
  25. </default>
  26. </test>
  27. <test>
  28. <default>
  29. <!-- should timeout after 1 second and retry twice before reporting failure; verify timeout works with command tag tests -->
  30. <files>%REGRESS%\mediumrunning.js</files>
  31. <timeout>1</timeout>
  32. <timeoutRetries>2</timeoutRetries>
  33. <tags>exclude_dynapogo</tags>
  34. </default>
  35. </test>
  36. </regress-exe>