Tests now point to the correct locations

This commit is contained in:
François Autin
2023-04-05 17:07:58 +02:00
parent 968137cc1b
commit 2f0b9e6592
2 changed files with 3 additions and 3 deletions

View File

@ -208,7 +208,7 @@ mod test {
fn test_thread_context() {
let mut machine = Machine::default();
let (loader, ptr) = loader::Loader::new("./test/syscall_tests/halt", &mut machine, 0).expect("IO Error");
let (loader, ptr) = loader::Loader::new("./target/guac/halt.guac", &mut machine, 0).expect("IO Error");
let start_pc = loader.elf_header.entrypoint;
let system = &mut System::default();