From 2acb967a466bfa0d9d99d0537ae630be1e2ef8aa Mon Sep 17 00:00:00 2001 From: Stephen Marz Date: Thu, 4 Jun 2020 18:05:55 -0400 Subject: [PATCH] Unfortunately, until we have a shell, I have to keep hard coding the path. --- risc_v/src/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/risc_v/src/test.rs b/risc_v/src/test.rs index f397512..128d506 100644 --- a/risc_v/src/test.rs +++ b/risc_v/src/test.rs @@ -6,7 +6,7 @@ use crate::syscall; pub fn test() { // The majority of the testing code needs to move into a system call (execv maybe?) MinixFileSystem::init(8); - let path = "/testrv\0".as_bytes().as_ptr(); + let path = "/fb\0".as_bytes().as_ptr(); syscall::syscall_execv(path,0); println!("I should never get here, execv should destroy our process."); }