diff options
-rw-r--r-- | build_and_test.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/build_and_test.sh b/build_and_test.sh index 2ff7159..03c06fc 100644 --- a/build_and_test.sh +++ b/build_and_test.sh @@ -135,8 +135,8 @@ $COMPILE ${FLAGS} \ ${FLAG_EXE}"build/kit_test_suite${EXE_POSTFIX}" \ "build/kit${OBJ_POSTFIX}" \ "build/kit_test${OBJ_POSTFIX}" \ - "source/tests/_static.c" \ - ${LINK_FLAGS} + ${LINK_FLAGS} \ + "source/tests/_static.c" if [ $? -ne 0 ]; then exit 1 fi @@ -145,8 +145,8 @@ $COMPILE ${FLAGS} \ ${FLAG_EXE}"build/test_too_many_assertions${EXE_POSTFIX}" \ "build/kit${OBJ_POSTFIX}" \ "build/kit_test${OBJ_POSTFIX}" \ - "source/tests/test_too_many_assertions.c" \ - ${LINK_FLAGS} + ${LINK_FLAGS} \ + "source/tests/test_too_many_assertions.c" if [ $? -ne 0 ]; then exit 1 fi @@ -155,8 +155,8 @@ $COMPILE ${FLAGS} \ ${FLAG_EXE}"build/test_too_many_tests${EXE_POSTFIX}" \ "build/kit${OBJ_POSTFIX}" \ "build/kit_test${OBJ_POSTFIX}" \ - "source/tests/test_too_many_tests.c" \ - ${LINK_FLAGS} + ${LINK_FLAGS} \ + "source/tests/test_too_many_tests.c" if [ $? -ne 0 ]; then exit 1 fi @@ -165,8 +165,8 @@ $COMPILEPP ${FLAGS} \ ${FLAG_EXE}"build/test_cpp${EXE_POSTFIX}" \ "build/kit${OBJ_POSTFIX}" \ "build/kit_test${OBJ_POSTFIX}" \ - "source/tests/test_cpp.cpp" \ - ${LINK_FLAGS} + ${LINK_FLAGS} \ + "source/tests/test_cpp.cpp" if [ $? -ne 0 ]; then exit 1 fi @@ -175,8 +175,8 @@ $COMPILEPP ${FLAGS} \ ${FLAG_EXE}"build/test_signals${EXE_POSTFIX}" \ "build/kit${OBJ_POSTFIX}" \ "build/kit_test${OBJ_POSTFIX}" \ - "source/tests/test_signals.cpp" \ - ${LINK_FLAGS} + ${LINK_FLAGS} \ + "source/tests/test_signals.cpp" if [ $? -ne 0 ]; then exit 1 fi |