mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[gamecode] Rename test-math to test-vector
I decided to stick with the minimal tests per test program rather than try to cram all the math operator tests into the one program.
This commit is contained in:
parent
a6badaa05d
commit
4777f44ba1
2 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
libs_gamecode_tests = \
|
||||
libs/gamecode/test/test-load \
|
||||
libs/gamecode/test/test-math \
|
||||
libs/gamecode/test/test-vector \
|
||||
libs/gamecode/test/test-stack \
|
||||
libs/gamecode/test/test-store
|
||||
|
||||
|
@ -19,11 +19,6 @@ libs_gamecode_test_test_load_SOURCES= \
|
|||
libs_gamecode_test_test_load_LDADD= $(test_gamecode_libs)
|
||||
libs_gamecode_test_test_load_DEPENDENCIES= $(test_gamecode_libs)
|
||||
|
||||
libs_gamecode_test_test_math_SOURCES= \
|
||||
libs/gamecode/test/test-math.c
|
||||
libs_gamecode_test_test_math_LDADD= $(test_gamecode_libs)
|
||||
libs_gamecode_test_test_math_DEPENDENCIES= $(test_gamecode_libs)
|
||||
|
||||
libs_gamecode_test_test_stack_SOURCES= \
|
||||
libs/gamecode/test/test-stack.c
|
||||
libs_gamecode_test_test_stack_LDADD= $(test_gamecode_libs)
|
||||
|
@ -33,3 +28,8 @@ libs_gamecode_test_test_store_SOURCES= \
|
|||
libs/gamecode/test/test-store.c
|
||||
libs_gamecode_test_test_store_LDADD= $(test_gamecode_libs)
|
||||
libs_gamecode_test_test_store_DEPENDENCIES= $(test_gamecode_libs)
|
||||
|
||||
libs_gamecode_test_test_vector_SOURCES= \
|
||||
libs/gamecode/test/test-vector.c
|
||||
libs_gamecode_test_test_vector_LDADD= $(test_gamecode_libs)
|
||||
libs_gamecode_test_test_vector_DEPENDENCIES= $(test_gamecode_libs)
|
||||
|
|
Loading…
Reference in a new issue