diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-06-10 12:51:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-10 12:51:50 +0200 |
commit | acd9646ede45f8c34f423e392e60bf128c953bd1 (patch) | |
tree | d6605611a9f567470e0f69bf3ef1b3fae13619c6 | |
parent | fc00af99ce37ee400d0344dce59243d58a8bd782 (diff) | |
parent | 7e3b605ff43c309e146225c6bdee669e724e620c (diff) |
Merge pull request #19461 from touilleMan/correct-test_get_names
Correct test list returned by test_get_names
-rw-r--r-- | main/tests/test_main.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/main/tests/test_main.cpp b/main/tests/test_main.cpp index c9431a1a09..cbc1107acb 100644 --- a/main/tests/test_main.cpp +++ b/main/tests/test_main.cpp @@ -50,15 +50,20 @@ const char **tests_get_names() { static const char *test_names[] = { "string", - "containers", "math", + "physics", + "physics_2d", "render", - "multimesh", + "oa_hash_map", "gui", "io", "shaderlang", - "physics", - "oa_hash_map", + "gd_tokenizer", + "gd_parser", + "gd_compiler", + "gd_bytecode", + "image", + "ordered_hash_map", NULL }; |