Comment out stack_overflow() call to keep cargo xtest working

This commit is contained in:
Philipp Oppermann
2019-04-26 15:48:59 +02:00
parent 70d981e179
commit 111c3e1029

View File

@@ -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();