Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / filesys / Make.vars
index 5899e51100fe5324fb924199c215f3e3a14f4e9c..5a010be73da65f286ddc235b223ccc40fdbd44a1 100644 (file)
@@ -1,6 +1,11 @@
-DEFINES = -DUSERPROG -DFILESYS
-SUBDIRS = threads devices lib lib/kernel userprog filesys
+# -*- makefile -*-
 
-# Comment out the two lines below to disable VM.
-DEFINES += -DVM
-SUBDIRS += vm
+os.dsk: DEFINES = -DUSERPROG -DFILESYS
+
+KERNEL_SUBDIRS = threads devices lib lib/kernel userprog filesys
+TEST_SUBDIRS = tests/userprog tests/filesys/base tests/filesys/extended
+
+# Uncomment the lines below to enable VM.
+#os.dsk: DEFINES += -DVM
+#KERNEL_SUBDIRS += vm
+#TEST_SUBDIRS += tests/vm