diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-27 22:46:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-27 22:46:40 +0200 |
| commit | 9e0fbb49c12a4bb12c275194b0599fdfa0b1aabf (patch) | |
| tree | 8804d0dd24cc126087462edfbbbf73ed61b56b0e /main/tests/test_main.cpp | |
| parent | 37da8155a4500a9386027b4d791a86186bc7ab4a (diff) | |
| parent | 7ad14e7a3e6f87ddc450f7e34621eb5200808451 (diff) | |
Merge pull request #10699 from akien-mga/burn-burn-burn
Dead code tells no tales
Diffstat (limited to 'main/tests/test_main.cpp')
| -rw-r--r-- | main/tests/test_main.cpp | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/main/tests/test_main.cpp b/main/tests/test_main.cpp index f1d2f9b231..794bdb757b 100644 --- a/main/tests/test_main.cpp +++ b/main/tests/test_main.cpp @@ -32,19 +32,16 @@ #ifdef DEBUG_ENABLED -#include "test_containers.h" +#include "test_gdscript.h" #include "test_gui.h" +#include "test_image.h" +#include "test_io.h" #include "test_math.h" #include "test_physics.h" #include "test_physics_2d.h" #include "test_render.h" -#include "test_sound.h" -#include "test_string.h" - -#include "test_gdscript.h" -#include "test_image.h" -#include "test_io.h" #include "test_shader_lang.h" +#include "test_string.h" const char **tests_get_names() { @@ -71,11 +68,6 @@ MainLoop *test_main(String p_test, const List<String> &p_args) { return TestString::test(); } - if (p_test == "containers") { - - return TestContainers::test(); - } - if (p_test == "math") { return TestMath::test(); @@ -103,11 +95,6 @@ MainLoop *test_main(String p_test, const List<String> &p_args) { } #endif - //if (p_test=="sound") { - - // return TestSound::test(); - //} - if (p_test == "io") { return TestIO::test(); |