1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

More server renames for consistency after #37361

This commit is contained in:
Rémi Verschelde
2020-03-28 13:19:05 +01:00
parent bbbdabc771
commit 0c320a6bf3
77 changed files with 163 additions and 148 deletions

View File

@@ -40,8 +40,8 @@
#include "test_math.h"
#include "test_oa_hash_map.h"
#include "test_ordered_hash_map.h"
#include "test_physics.h"
#include "test_physics_2d.h"
#include "test_physics_3d.h"
#include "test_render.h"
#include "test_shader_lang.h"
#include "test_string.h"
@@ -51,8 +51,8 @@ const char **tests_get_names() {
static const char *test_names[] = {
"string",
"math",
"physics",
"physics_2d",
"physics_3d",
"render",
"oa_hash_map",
"gui",
@@ -81,16 +81,16 @@ MainLoop *test_main(String p_test, const List<String> &p_args) {
return TestMath::test();
}
if (p_test == "physics") {
return TestPhysics::test();
}
if (p_test == "physics_2d") {
return TestPhysics2D::test();
}
if (p_test == "physics_3d") {
return TestPhysics3D::test();
}
if (p_test == "render") {
return TestRender::test();