Torque3D/Templates/BaseGame/game/runTests.tscript

14 lines
378 B
Text
Raw Normal View History

2023-04-06 15:28:09 +02:00
// Placeholder initialisation that the tests expect
GFXInit::createNullDevice();
if(!isObject(GuiDefaultProfile))
new GuiControlProfile (GuiDefaultProfile) {};
if(!isObject(GuiTooltipProfile))
new GuiControlProfile (GuiTooltipProfile) {};
setLogMode(2);
$Con::LogBufferEnabled = false;
$Testing::CheckMemoryLeaks = false;
2023-04-06 15:28:09 +02:00
runAllUnitTests("-*.Stress*", "xml");
quit();