summaryrefslogtreecommitdiff
path: root/userfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'userfs.c')
-rw-r--r--userfs.c3
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;
}