Torque3D/Templates/BaseGame/game/runTests.tscript
2023-04-06 15:28:09 +02:00

14 lines
378 B
Plaintext

// 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;
runAllUnitTests("-*.Stress*", "xml");
quit();