Upgraded to the latest winlibs/gcc 14.
This commit is contained in:
parent
5a6494acf5
commit
290affa49a
11 changed files with 20 additions and 13 deletions
|
@ -13,7 +13,7 @@ using namespace fmt;
|
|||
using namespace components;
|
||||
using std::string;
|
||||
|
||||
TEST_CASE("load a basic gui run but don't loop", "[render]") {
|
||||
TEST_CASE("load a basic gui run but don't loop", "[gui]") {
|
||||
DinkyECS::World world;
|
||||
save::load_configs(world);
|
||||
Map game_map(40, 40);
|
||||
|
|
|
@ -133,7 +133,7 @@ TEST_CASE("thrash box iterators", "[matrix]") {
|
|||
}
|
||||
|
||||
TEST_CASE("thrash compass iterators", "[matrix:compass]") {
|
||||
for(int count = 0; count < 2000; count++) {
|
||||
for(int count = 0; count < 20; count++) {
|
||||
size_t width = Random::uniform<size_t>(1, 25);
|
||||
size_t height = Random::uniform<size_t>(1, 33);
|
||||
|
||||
|
@ -163,7 +163,7 @@ TEST_CASE("thrash compass iterators", "[matrix:compass]") {
|
|||
}
|
||||
|
||||
TEST_CASE("prototype flood algorithm", "[matrix:flood]") {
|
||||
for(int count = 0; count < 1000; count++) {
|
||||
for(int count = 0; count < 20; count++) {
|
||||
size_t width = Random::uniform<size_t>(10, 25);
|
||||
size_t height = Random::uniform<size_t>(10, 33);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue