Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ endif

# End-To-End (E2E) tests
e2etest: ${BIN}
/bin/bash tests/test.sh ${BIN} $(TEST) ${MPI} ${FFTW} ${PLUMED} ${CP2K} ${TCPB} test
/bin/bash tests/test.sh "${BIN}" "$(TEST)" "${MPI}" "${FFTW}" "${PLUMED}" "${CP2K}" "${TCPB}" test

# Runs both end-to-end and unit tests
test: unittest e2etest
Expand All @@ -121,11 +121,11 @@ testclean:
ifneq ($(strip $(PFUNIT_PATH)),)
$(MAKE) -C unit_tests clean
endif
/bin/bash tests/test.sh ${BIN} $(TEST) ${MPI} ${FFTW} $(PLUMED) ${CP2K} ${TCPB} clean
/bin/bash tests/test.sh "${BIN}" "$(TEST)" "${MPI}" "${FFTW}" "$(PLUMED)" "${CP2K}" "${TCPB}" clean

# This will automatically generate new reference data for E2E tests
makeref: ${BIN}
/bin/bash tests/test.sh ${BIN} $(TEST) ${MPI} ${FFTW} $(PLUMED) ${CP2K} ${TCPB} makeref
/bin/bash tests/test.sh "${BIN}" "$(TEST)" "${MPI}" "${FFTW}" "$(PLUMED)" "${CP2K}" "${TCPB}" makeref


.PHONY: clean test testclean makeref unittest e2etest
Loading