summaryrefslogtreecommitdiff
path: root/bin/tests/test_main.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-01-02 19:12:25 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-01-02 19:12:25 -0300
commitce26eb74bca48f16e9a34b4eb1c34e50dfc5daae (patch)
tree5f9c387037d0142d40f7275575436483dc0a7237 /bin/tests/test_main.cpp
parentab4126f51061277e87b41c48b40e7b54942d4eca (diff)
parent45c5c89de961357a7042d9e1f063e288d7a510cf (diff)
Merge branch 'master' of https://github.com/godotengine/godot
Diffstat (limited to 'bin/tests/test_main.cpp')
-rw-r--r--bin/tests/test_main.cpp34
1 files changed, 1 insertions, 33 deletions
diff --git a/bin/tests/test_main.cpp b/bin/tests/test_main.cpp
index 363aede96e..1f7f2d7dda 100644
--- a/bin/tests/test_main.cpp
+++ b/bin/tests/test_main.cpp
@@ -37,13 +37,10 @@
#include "test_gui.h"
#include "test_render.h"
#include "test_sound.h"
-#include "test_misc.h"
#include "test_physics.h"
#include "test_physics_2d.h"
-#include "test_python.h"
+
#include "test_io.h"
-#include "test_particles.h"
-#include "test_detailer.h"
#include "test_shader_lang.h"
#include "test_gdscript.h"
#include "test_image.h"
@@ -56,7 +53,6 @@ const char ** tests_get_names() {
"containers",
"math",
"render",
- "particles",
"multimesh",
"gui",
"io",
@@ -96,11 +92,6 @@ MainLoop* test_main(String p_test,const List<String>& p_args) {
return TestPhysics2D::test();
}
- if (p_test=="misc") {
-
- return TestMisc::test();
- }
-
if (p_test=="render") {
return TestRender::test();
@@ -123,16 +114,6 @@ MainLoop* test_main(String p_test,const List<String>& p_args) {
return TestIO::test();
}
- if (p_test=="particles") {
-
- return TestParticles::test();
- }
-
- if (p_test=="multimesh") {
-
- return TestMultiMesh::test();
- }
-
if (p_test=="shaderlang") {
return TestShaderLang::test();
@@ -163,19 +144,6 @@ MainLoop* test_main(String p_test,const List<String>& p_args) {
return TestImage::test();
}
- if (p_test=="detailer") {
-
- return TestMultiMesh::test();
- }
-
-#ifdef PYTHON_ENABLED
-
- if (p_test=="python") {
-
- return TestPython::test();
- }
-#endif
-
return NULL;
}