runTests.tscript 378 B

12345678910111213
  1. // Placeholder initialisation that the tests expect
  2. GFXInit::createNullDevice();
  3. if(!isObject(GuiDefaultProfile))
  4. new GuiControlProfile (GuiDefaultProfile) {};
  5. if(!isObject(GuiTooltipProfile))
  6. new GuiControlProfile (GuiTooltipProfile) {};
  7. setLogMode(2);
  8. $Con::LogBufferEnabled = false;
  9. $Testing::CheckMemoryLeaks = false;
  10. runAllUnitTests("-*.Stress*", "xml");
  11. quit();