X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2FMakefile;h=efea7a5078db3e7da0cb6621a588f4f0ed9b313f;hb=01f46f42675434436caff072a40cb2bc904c2df4;hp=f7c813184e6a1eddbbeb146f343ae674f207db31;hpb=6e77241274ead3d937414d50d643ddcbb89d118d;p=pintos-anon diff --git a/tests/Makefile b/tests/Makefile index f7c8131..efea7a5 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,5 +1,10 @@ TESTS = threads p1-1 p1-2 p1-3 list stdlib userprog p2 vm filesys +PATH := $(shell pwd)/../src/utils:$(PATH) + +all: + @echo "This Makefile has only \`check' targets." + check: $(MAKE) -C .. distclean for d in $(TESTS); do $(MAKE) $$d || exit 1; done @@ -86,7 +91,6 @@ userprog:: $(prep-grading) $(mk-sandbox) $(apply-patch) ../solutions/p1-2.patch - echo '#define THREAD_JOIN_IMPLEMENTED 1' > $@/pintos/src/constants.h $(run-tests) null $(clean)