From d9abd0ec81a55f3a3b39259c507b7577351e7268 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Sun, 31 Mar 2019 08:58:32 -0500 Subject: [PATCH] more details on testing in README --- initial-xv6/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/initial-xv6/README.md b/initial-xv6/README.md index 510585f..3f5723f 100644 --- a/initial-xv6/README.md +++ b/initial-xv6/README.md @@ -79,6 +79,7 @@ using a newly generated makefile called `Makefile.test`. You can use this when debugging (assuming you ever make mistakes, that is), e.g.: ```sh +prompt> cd src/ prompt> make -f Makefile.test qemu-nox ``` @@ -88,3 +89,8 @@ You can suppress the repeated building of xv6 in the tests with the ```sh prompt> ./test-getreadcounts.sh -s ``` + +The other usual testing flags are also available. See [the testing +README](https://github.com/remzi-arpacidusseau/ostep-projects/blob/master/tester/README.md) +for details. +