Browse Source

🚚 Move tests to a standard folder

pull/1465/head
Anders Jenbo 5 years ago
parent
commit
53a3657b29
  1. 44
      CMakeLists.txt
  2. 0
      test/appfat_test.cpp
  3. 0
      test/automap_test.cpp
  4. 0
      test/codec_test.cpp
  5. 0
      test/control_test.cpp
  6. 0
      test/cursor_test.cpp
  7. 0
      test/dead_test.cpp
  8. 0
      test/diablo_test.cpp
  9. 0
      test/doom_test.cpp
  10. 0
      test/drlg_l1_test.cpp
  11. 0
      test/drlg_l2_test.cpp
  12. 0
      test/drlg_l3_test.cpp
  13. 0
      test/drlg_l4_test.cpp
  14. 0
      test/effects_test.cpp
  15. 0
      test/file_util_test.cpp
  16. 0
      test/inv_test.cpp
  17. 0
      test/lighting_test.cpp
  18. 0
      test/missiles_test.cpp
  19. 0
      test/pack_test.cpp
  20. 0
      test/picosha2.h
  21. 0
      test/player_test.cpp
  22. 0
      test/scrollrt_test.cpp
  23. 0
      test/stores_test.cpp
  24. 0
      test/writehero_test.cpp

44
CMakeLists.txt

@ -373,28 +373,28 @@ endif()
if(RUN_TESTS)
list(APPEND devilutionx_SRCS
SourceT/appfat_test.cpp
SourceT/automap_test.cpp
SourceT/control_test.cpp
SourceT/cursor_test.cpp
SourceT/codec_test.cpp
SourceT/dead_test.cpp
SourceT/diablo_test.cpp
SourceT/doom_test.cpp
SourceT/drlg_l1_test.cpp
SourceT/drlg_l2_test.cpp
SourceT/drlg_l3_test.cpp
SourceT/drlg_l4_test.cpp
SourceT/effects_test.cpp
SourceT/file_util_test.cpp
SourceT/inv_test.cpp
SourceT/lighting_test.cpp
SourceT/missiles_test.cpp
SourceT/pack_test.cpp
SourceT/player_test.cpp
SourceT/scrollrt_test.cpp
SourceT/stores_test.cpp
SourceT/writehero_test.cpp)
test/appfat_test.cpp
test/automap_test.cpp
test/control_test.cpp
test/cursor_test.cpp
test/codec_test.cpp
test/dead_test.cpp
test/diablo_test.cpp
test/doom_test.cpp
test/drlg_l1_test.cpp
test/drlg_l2_test.cpp
test/drlg_l3_test.cpp
test/drlg_l4_test.cpp
test/effects_test.cpp
test/file_util_test.cpp
test/inv_test.cpp
test/lighting_test.cpp
test/missiles_test.cpp
test/pack_test.cpp
test/player_test.cpp
test/scrollrt_test.cpp
test/stores_test.cpp
test/writehero_test.cpp)
endif()
add_executable(${BIN_TARGET} WIN32 MACOSX_BUNDLE ${devilutionx_SRCS})

0
SourceT/appfat_test.cpp → test/appfat_test.cpp

0
SourceT/automap_test.cpp → test/automap_test.cpp

0
SourceT/codec_test.cpp → test/codec_test.cpp

0
SourceT/control_test.cpp → test/control_test.cpp

0
SourceT/cursor_test.cpp → test/cursor_test.cpp

0
SourceT/dead_test.cpp → test/dead_test.cpp

0
SourceT/diablo_test.cpp → test/diablo_test.cpp

0
SourceT/doom_test.cpp → test/doom_test.cpp

0
SourceT/drlg_l1_test.cpp → test/drlg_l1_test.cpp

0
SourceT/drlg_l2_test.cpp → test/drlg_l2_test.cpp

0
SourceT/drlg_l3_test.cpp → test/drlg_l3_test.cpp

0
SourceT/drlg_l4_test.cpp → test/drlg_l4_test.cpp

0
SourceT/effects_test.cpp → test/effects_test.cpp

0
SourceT/file_util_test.cpp → test/file_util_test.cpp

0
SourceT/inv_test.cpp → test/inv_test.cpp

0
SourceT/lighting_test.cpp → test/lighting_test.cpp

0
SourceT/missiles_test.cpp → test/missiles_test.cpp

0
SourceT/pack_test.cpp → test/pack_test.cpp

0
SourceT/picosha2.h → test/picosha2.h

0
SourceT/player_test.cpp → test/player_test.cpp

0
SourceT/scrollrt_test.cpp → test/scrollrt_test.cpp

0
SourceT/stores_test.cpp → test/stores_test.cpp

0
SourceT/writehero_test.cpp → test/writehero_test.cpp

Loading…
Cancel
Save