Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testharnish #28

Merged
merged 14 commits into from
Jul 29, 2024
7 changes: 6 additions & 1 deletion c-runtime/Makefile
cagix marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,12 @@ test: curl_catch
.PHONY: test_clean
test_clean:
make -f $(TESTDIR)/Systemtests/makefile clean
$(RM) -r $(TESTDIR)/include/catch.hpp

$(RM) -r $(TESTDIR)/include/catch_amalgamated.hpp
$(RM) -r $(TESTDIR)/src/catch_amalgamated.cpp

touch $(TESTDIR)/include/catch_amalgamated.hpp
touch $(TESTDIR)/src/catch_amalgamated.cpp
cagix marked this conversation as resolved.
Show resolved Hide resolved

.PHONY: test_echo
test_echo:
Expand Down
8 changes: 5 additions & 3 deletions c-runtime/test/Systemtests/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,13 @@ run:
.$(RUNCLASSINHERITANCE)

echo:
@echo ${C_FILES}
@echo ${TESTDIR}
@echo ${RUN}
@echo $(C_FILES_TEST)
@echo $(C_FILES)
@echo $(TESTDIR)
@echo $(RUN)
@echo $(UNAME)
@echo $(CC)
@echo $(INCLUDEDIRTEST)

test_declaration_and_assignment:
$(CC) -I $(INCLUDEDIR) -I $(INCLUDEDIRTEST) -o $(TESTDIR)/Systemtests/DeclarationAndAssignment/TestDeclarationAndAssignment.out -w -fpermissive $(TESTDIR)/Systemtests/DeclarationAndAssignment/TestDeclarationAndAssignment.c* $(C_FILES_TEST) $(C_FILES)
Expand Down
Empty file.
cagix marked this conversation as resolved.
Show resolved Hide resolved
Empty file.