diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-06-08 04:56:24 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-06-08 05:00:38 +0200 |
commit | a0b3c0b64b44536bb073677eac57bdc737dd4e9b (patch) | |
tree | 671f1c13aab36c315207bf353f437997d0565878 | |
parent | be600cd122abfdbd608a7a84a69e68e136269211 (diff) |
test: reorder slow tests
-rw-r--r-- | test/app.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/app.cpp b/test/app.cpp index f7adebcb..35a65743 100644 --- a/test/app.cpp +++ b/test/app.cpp @@ -72,18 +72,18 @@ int App::exec() FM_TEST(test_json2), FM_TEST(test_json3), FM_TEST(test_loader), - FM_TEST(test_region), - FM_TEST(test_rtree), FM_TEST(test_raycast), FM_TEST(test_wall_atlas), FM_TEST(test_wall_atlas2), + FM_TEST(test_region), // the rest are slow + FM_TEST(test_rtree), FM_TEST(test_astar), + FM_TEST(test_save), FM_TEST(test_critter), FM_TEST(test_dijkstra), FM_TEST(test_loader2), FM_TEST(test_loader3), - FM_TEST(test_save), FM_TEST(test_saves), }; |