diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-06 02:50:27 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-06 02:50:27 +0200 |
commit | b1462e1a08f39b6f434ca20330d1e48af03f2e97 (patch) | |
tree | 87c78a538a9b7ca93f873db36b1946896b1a3517 | |
parent | 92a35d324e53e62e93e5251c4b57d2c97ccf1eac (diff) | |
download | kit-b1462e1a08f39b6f434ca20330d1e48af03f2e97.zip |
test
-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 |