Fix tests

This commit is contained in:
0x4261756D
2023-01-23 06:08:26 +01:00
parent 476aa8bfb2
commit 131386632f
4 changed files with 14 additions and 6 deletions

View File

@ -986,12 +986,12 @@ fn interpret_program(operations: &Vec<Operation>, queue: &mut Vec<String>, funct
if position >= arr.length
{
//return Err(format!("Attempted an out of bounds write for array {} ({} >= {}) at {}:{}", arr.name, position, arr.length, line, col));
return Err(String::from("Attempted array out-of-bounds access"));
return Err(String::from("Attempted array out-of-bounds access\n"));
}
if position < 0
{
//return Err(format!("Attempted an out of bounds write for array {} ({} < 0) at {}:{}", arr.name, position, line, col));
return Err(String::from("Attempted array out-of-bounds access"));
return Err(String::from("Attempted array out-of-bounds access\n"));
}
let data = queue.remove(0);
if debug
@ -1010,12 +1010,12 @@ fn interpret_program(operations: &Vec<Operation>, queue: &mut Vec<String>, funct
if position >= arr.length
{
//return Err(format!("Attempted an out of bounds read for array {} ({} >= {}) at {}:{}", arr.name, position, arr.length, line, col));
return Err(String::from("Attempted array out-of-bounds access"));
return Err(String::from("Attempted array out-of-bounds access\n"));
}
if position < 0
{
//return Err(format!("Attempted an out of bounds read for array {} ({} < 0) at {}:{}", arr.name, position, line, col));
return Err(String::from("Attempted array out-of-bounds access"));
return Err(String::from("Attempted array out-of-bounds access\n"));
}
queue.push(arr.data[position as usize].clone());
}