Update to the newest fuc2.

This commit is contained in:
Zed A. Shaw 2026-06-17 01:55:09 -04:00
parent aa153f8e84
commit 9fffa51729
6 changed files with 14 additions and 10 deletions

View file

@ -12,7 +12,7 @@ namespace guecs_tests {
}
fuc2::Set TESTS{
.name="GUECS tests (empty!)",
.name="guecs",
.tests={
TEST(test_prototype),
}

View file

@ -64,7 +64,7 @@ namespace lel_tests {
}
fuc2::Set TESTS{
.name="lel parser tests",
.name="lel",
.tests={
TEST(test_basic_ops),
}

View file

@ -9,9 +9,13 @@ TEST_SET(sound_tests);
TEST_SET(texture_tests);
int main(int argc, char* argv[]) {
run(lel_tests::TESTS);
run(guecs_tests::TESTS);
run(shader_tests::TESTS);
run(sound_tests::TESTS);
run(texture_tests::TESTS);
std::vector<Set> all_tests{
lel_tests::TESTS,
guecs_tests::TESTS,
shader_tests::TESTS,
sound_tests::TESTS,
texture_tests::TESTS,
};
run_tests(all_tests, argc, argv);
}

View file

@ -28,7 +28,7 @@ namespace shader_tests {
}
fuc2::Set TESTS{
.name="shader tests",
.name="shader",
.tests={
TEST(test_shader_loading),
}

View file

@ -15,7 +15,7 @@ namespace sound_tests {
}
fuc2::Set TESTS{
.name="sound manager tests",
.name="sound",
.tests={
TEST(test_sound_manager),
}

View file

@ -16,7 +16,7 @@ namespace texture_tests {
}
fuc2::Set TESTS{
.name="texture manager tests",
.name="texture",
.tests={
TEST(test_texture_management),
}