From 111c3e102956fd6c04cbe69dc6411a6f7f567cb6 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 26 Apr 2019 15:48:59 +0200 Subject: [PATCH] Comment out stack_overflow() call to keep cargo xtest working --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 24ceccbf..b5cd3b42 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,8 +17,8 @@ pub extern "C" fn _start() -> ! { stack_overflow(); // for each recursion, the return address is pushed } - // trigger a stack overflow - stack_overflow(); + // uncomment line below to trigger a stack overflow + // stack_overflow(); #[cfg(test)] test_main();