Update to the newest fuc2.
This commit is contained in:
parent
aa153f8e84
commit
9fffa51729
6 changed files with 14 additions and 10 deletions
|
|
@ -12,7 +12,7 @@ namespace guecs_tests {
|
|||
}
|
||||
|
||||
fuc2::Set TESTS{
|
||||
.name="GUECS tests (empty!)",
|
||||
.name="guecs",
|
||||
.tests={
|
||||
TEST(test_prototype),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ namespace lel_tests {
|
|||
}
|
||||
|
||||
fuc2::Set TESTS{
|
||||
.name="lel parser tests",
|
||||
.name="lel",
|
||||
.tests={
|
||||
TEST(test_basic_ops),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ namespace shader_tests {
|
|||
}
|
||||
|
||||
fuc2::Set TESTS{
|
||||
.name="shader tests",
|
||||
.name="shader",
|
||||
.tests={
|
||||
TEST(test_shader_loading),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ namespace sound_tests {
|
|||
}
|
||||
|
||||
fuc2::Set TESTS{
|
||||
.name="sound manager tests",
|
||||
.name="sound",
|
||||
.tests={
|
||||
TEST(test_sound_manager),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ namespace texture_tests {
|
|||
}
|
||||
|
||||
fuc2::Set TESTS{
|
||||
.name="texture manager tests",
|
||||
.name="texture",
|
||||
.tests={
|
||||
TEST(test_texture_management),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue