Skip to content

Commit 4feaa2f

Browse files
committed
Tweak Makefile to so that make test TEST="CMD PIGLE"
1 parent 5af1168 commit 4feaa2f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ endif
111111

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

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

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

130130

131131
.PHONY: clean test testclean makeref unittest e2etest

0 commit comments

Comments
 (0)