summaryrefslogtreecommitdiff
path: root/src/test/common
AgeCommit message (Collapse)Author
2025-02-17fix(UnitTest): fixes unit tests not compiling under windows (#21299)Patrick Müssig
2024-07-30refactor(src/common): remove unused imports (#19506)Francesco Borzì
* refactor(src/common): remove unused imports * fix: build * chore: fix build * chore: size_t -> std::size_t * chore: fix fuckup from previous commit * chore: fix build * chore: fix build * chore: fix build * chore: fix build with std::size_t * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build * chore: fix build
2023-08-14fix(build): macOS (#17007)Kitzunu
* fix(build): macOS * Revert "fix(build): macOS" This reverts commit 612c41e41b2aea55069c0cfaf751c3ba7205e52f. * Update Config.cpp
2023-08-14feat(Core/Config): Implement config override with env vars (#16817)Anton Popovichenko
* Core/Config: Implement config override with env vars Implement overriding of configuration from the .conf file with environment variables. Environment variables keys are autogenerated based on the keys defined in .conf file. Usage example: $ export TC_DATA_DIR=/usr $ AC_WORLD_SERVER_PORT=8080 ./worldserver * Add tests for env vars config