Skip to content
Snippets Groups Projects
Commit 2746639c authored by Marcus M. Darden's avatar Marcus M. Darden
Browse files

Change "test cases" to "test files"

Prior to this change, we used test case and test file interchangeably,
but in an attempt to clear up wording, test case refers to the tests the
autograder applies, and test file refers to the tests the students
submit.
parent d5e612f8
No related branches found
No related tags found
No related merge requests found
...@@ -143,23 +143,23 @@ clean: ...@@ -143,23 +143,23 @@ clean:
rm -Rf *.dSYM rm -Rf *.dSYM
# make partialsubmit.tar.gz - cleans, creates tarball # make partialsubmit.tar.gz - cleans, creates tarball
# omitting test cases # omitting test files
PARTIAL_SUBMITFILES=$(filter-out $(TESTSOURCES), \ PARTIAL_SUBMITFILES=$(filter-out $(TESTSOURCES), \
$(wildcard Makefile *.h *.hpp *.cpp)) $(wildcard Makefile *.h *.hpp *.cpp))
$(PARTIAL_SUBMITFILE): $(PARTIAL_SUBMITFILES) $(PARTIAL_SUBMITFILE): $(PARTIAL_SUBMITFILES)
rm -f $(PARTIAL_SUBMITFILE) $(FULL_SUBMITFILE) rm -f $(PARTIAL_SUBMITFILE) $(FULL_SUBMITFILE)
COPYFILE_DISABLE=true tar -vczf $(PARTIAL_SUBMITFILE) \ COPYFILE_DISABLE=true tar -vczf $(PARTIAL_SUBMITFILE) \
$(PARTIAL_SUBMITFILES) $(PARTIAL_SUBMITFILES)
@echo !!! WARNING: No test cases included. Use 'make fullsubmit' to include test cases. !!! @echo !!! WARNING: No test files included. Use 'make fullsubmit' to include test files. !!!
# make fullsubmit.tar.gz - cleans, runs dos2unix, creates tarball # make fullsubmit.tar.gz - cleans, runs dos2unix, creates tarball
# including test cases # including test files
FULL_SUBMITFILES=$(filter-out $(TESTSOURCES), \ FULL_SUBMITFILES=$(filter-out $(TESTSOURCES), \
$(wildcard Makefile *.h *.hpp *.cpp test*.txt)) $(wildcard Makefile *.h *.hpp *.cpp test*.txt))
$(FULL_SUBMITFILE): $(FULL_SUBMITFILES) $(FULL_SUBMITFILE): $(FULL_SUBMITFILES)
rm -f $(PARTIAL_SUBMITFILE) $(FULL_SUBMITFILE) rm -f $(PARTIAL_SUBMITFILE) $(FULL_SUBMITFILE)
COPYFILE_DISABLE=true tar -vczf $(FULL_SUBMITFILE) $(FULL_SUBMITFILES) COPYFILE_DISABLE=true tar -vczf $(FULL_SUBMITFILE) $(FULL_SUBMITFILES)
@echo !!! Final submission prepared, test cases included... READY FOR GRADING !!! @echo !!! Final submission prepared, test files included... READY FOR GRADING !!!
# shortcut for make submit tarballs # shortcut for make submit tarballs
partialsubmit: identifier $(PARTIAL_SUBMITFILE) partialsubmit: identifier $(PARTIAL_SUBMITFILE)
...@@ -199,7 +199,7 @@ EECS281 Advanced Makefile Help ...@@ -199,7 +199,7 @@ EECS281 Advanced Makefile Help
free submissions if the project does not build. free submissions if the project does not build.
$$ make partialsubmit $$ make partialsubmit
B) Build 'fullsubmit.tar.gz' a tarball complete with autograder test B) Build 'fullsubmit.tar.gz' a tarball complete with autograder test
cases. files.
*** ALWAYS USE THIS FOR FINAL GRADING! *** *** ALWAYS USE THIS FOR FINAL GRADING! ***
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment