From 3e8b80af2a24c28490482e94d5c3e109474d861c Mon Sep 17 00:00:00 2001 From: Erin Date: Tue, 19 Oct 2021 23:35:46 +0200 Subject: [PATCH] Removed `in_the_past_this_used_to_crash_but_not_anymore` test --- ablescript/src/brian.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ablescript/src/brian.rs b/ablescript/src/brian.rs index 1073f9b8..16cb25e0 100644 --- a/ablescript/src/brian.rs +++ b/ablescript/src/brian.rs @@ -448,13 +448,4 @@ mod tests { fn negative_integer_overflow() { interpret_with_io(b"-", std::io::empty(), std::io::sink()).unwrap(); } - - #[test] - fn in_the_past_this_used_to_crash_but_not_anymore() { - let mut interpreter = Interpreter::from_ascii( - b"[-]++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>[-]++>[-]>[-]<<<[>>>+<<<-]>>>[<<[<+>>+<-]>[<+>-]>-]<<<------------>>++++++++++<<[->+>-[>+>>]>[+[-<+>]>+>>]<<<<<<]>>[-]>>>++++++++++<[->-[>+>>]>[+[-<+>]>+>>]<<<<<]>[-]>>[>++++++[-<++++++++>]<.<<+>+>[-]]<[<[->-<]++++++[->++++++++<]>.[-]]<<++++++[-<++++++++>]<.[-]<<[-<+>]<", - std::io::empty() - ); - interpreter.interpret_with_output(std::io::sink()).unwrap(); - } }