GDScript: Use default path in test generator if not provided

Since it's almost always used with the same path, assume it is running
from the Godot source root.
This commit is contained in:
George Marques 2023-04-26 11:12:47 -03:00
parent e2e870c611
commit 221deb1cc1
No known key found for this signature in database
GPG key ID: 046BD46A3201E43D

View file

@ -350,13 +350,13 @@ void GDScriptTestRunner::handle_cmdline() {
for (List<String>::Element *E = cmdline_args.front(); E; E = E->next()) {
String &cmd = E->get();
if (cmd == "--gdscript-generate-tests") {
if (E->next() == nullptr) {
ERR_PRINT("Needed a path for the test files.");
exit(-1);
String path;
if (E->next()) {
path = E->next()->get();
} else {
path = "modules/gdscript/tests/scripts";
}
const String &path = E->next()->get();
GDScriptTestRunner runner(path, false, cmdline_args.find("--print-filenames") != nullptr);
bool completed = runner.generate_outputs();