diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-11 08:32:10 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-11 08:49:53 +0100 |
| commit | 017cb08bf33608f1ceb8d59800a8d1d2f9d5d455 (patch) | |
| tree | 8918ad2e036d8dc79b7b2cbdce858a9617551aea /test/app.cpp | |
| parent | b2be7d57642197c0f65d2645c767c4f868ababb1 (diff) | |
loader: allow adding atlases to the list without parsing them
Diffstat (limited to 'test/app.cpp')
| -rw-r--r-- | test/app.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/app.cpp b/test/app.cpp index 99326c29..e896196d 100644 --- a/test/app.cpp +++ b/test/app.cpp @@ -60,12 +60,12 @@ int test_app::exec() FM_TEST(test_bitmask), FM_TEST(test_loader), FM_TEST(test_serializer1), - FM_TEST(test_anim_atlas), + FM_TEST(test_loader2), FM_TEST(test_scenery), FM_TEST(test_astar_pool), FM_TEST(test_astar), - FM_TEST(test_dijkstra), // todo add dummy atlases to avoid expensive loading - FM_TEST(test_load_all), + FM_TEST(test_dijkstra), + FM_TEST(test_saves), FM_TEST(test_zzz_misc), }; @@ -102,7 +102,8 @@ int test_app::exec() std::fwrite(name.data(), name.size(), 1, s); if constexpr(!sep.isEmpty()) std::fwrite(sep.data(), sep.size(), 1, s); - auto num_tabs = max_tabs - get_tabs(name); + auto num_tabs = max_tabs - get_tabs(name) - 1; + std::fputc('\t', s); std::fflush(stdout); auto ms = get_time(fun); fm_assert(num_tabs <= tab_limit); |
