Register GDScript test tools as test commands to run via command-line

This commit is contained in:
Andrii Doroshenko (Xrayez) 2020-08-18 17:24:45 +03:00
parent 6b7e50ab34
commit 0cc05c5a31
9 changed files with 135 additions and 44 deletions

View file

@ -31,8 +31,6 @@
#ifndef TEST_GDSCRIPT_H
#define TEST_GDSCRIPT_H
#include "core/os/main_loop.h"
namespace TestGDScript {
enum TestType {
@ -42,7 +40,8 @@ enum TestType {
TEST_BYTECODE,
};
MainLoop *test(TestType p_type);
void test(TestType p_type);
} // namespace TestGDScript
#endif // TEST_GDSCRIPT_H