Skip to content

Commit

Permalink
agagaga
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Nov 15, 2023
1 parent 0a6d1eb commit 1fa8d1f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions code/_compile_options.dm
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@
#define GC_FAILURE_HARD_LOOKUP
#endif

#ifdef ALL_TESTS
#define CREATE_AND_DESTROY_TEST
#define PLANET_GEN_TEST
#define RUIN_PLACEMENT_TEST
#define SHIP_PLACEMENT_TEST
#endif

// A reasonable number of maximum overlays an object needs
// If you think you need more, rethink it
#define MAX_ATOM_OVERLAYS 100
Expand Down
8 changes: 4 additions & 4 deletions code/modules/unit_tests/_unit_tests.dm
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,19 @@

#endif //SKIP_MAIN_TESTS

#ifdef CREATE_AND_DESTROY_TEST || ALL_TESTS
#ifdef CREATE_AND_DESTROY_TEST
#include "create_and_destroy.dm"
#endif //CREATE_AND_DESTROY_TEST

#ifdef PLANET_GEN_TEST || ALL_TESTS
#ifdef PLANET_GEN_TEST
#include "planet_gen.dm"
#endif //PLANET_GEN

#ifdef RUIN_PLACEMENT_TEST || ALL_TESTS
#ifdef RUIN_PLACEMENT_TEST
#include "ruin_placement.dm"
#endif //RUIN_PLACEMENT_TEST

#ifdef SHIP_PLACEMENT_TEST || ALL_TESTS
#ifdef SHIP_PLACEMENT_TEST
#include "ship_outpost_placement.dm"
#endif //SHIP_PLACEMENT_TEST

Expand Down

0 comments on commit 1fa8d1f

Please sign in to comment.