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."); }