aboutsummaryrefslogtreecommitdiffstats
path: root/src/userprog
diff options
context:
space:
mode:
Diffstat (limited to 'src/userprog')
-rw-r--r--src/userprog/Make.vars2
-rw-r--r--src/userprog/process.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/userprog/Make.vars b/src/userprog/Make.vars
index 4335438..f158791 100644
--- a/src/userprog/Make.vars
+++ b/src/userprog/Make.vars
@@ -2,7 +2,7 @@
os.dsk: DEFINES += -DUSERPROG -DFILESYS
KERNEL_SUBDIRS = threads devices lib lib/kernel userprog filesys
-TEST_SUBDIRS = tests/klaar tests/userprog tests/filesys/base
+TEST_SUBDIRS = tests/klaar tests/filst tests/userprog tests/filesys/base
# tests/userprog/no-vm
GRADING_FILE = $(SRCDIR)/tests/userprog/Grading
SIMULATOR = --qemu
diff --git a/src/userprog/process.c b/src/userprog/process.c
index b4177d0..c013008 100644
--- a/src/userprog/process.c
+++ b/src/userprog/process.c
@@ -235,7 +235,7 @@ process_cleanup (void)
* important to do this printf BEFORE you tell the parent process
* that you exit. (Since the parent may be the main() function,
* that may sometimes poweroff as soon as process_wait() returns,
- * possibly before the prontf is completed.)
+ * possibly before the printf is completed.)
*/
printf("%s: exit(%d)\n", thread_name(), status);