1 files changed, 2 insertions, 1 deletions
diff --git a/userfs.c b/userfs.c index aad9326..d3a4923 100644 --- a/ userfs.c+++ b/ userfs.c@@ -3,12 +3,13 @@ // file system tests char buf[1024]; +char *args[] = { "echo", "hello", "goodbye", 0 }; int main(void) { puts("userfs running\n"); block(); - exec("usertests"); + exec("echo", args); return 0; } |