about summary refs log tree commit diff
path: root/src/libcore/macros.rs
AgeCommit message (Collapse)AuthorLines
2013-04-24core: Turn off rtdebug loggingBrian Anderson-2/+2
Accidentally left in on at some point
2013-04-23core::rt: Tasks to not require an unwinderBrian Anderson-0/+39
A task without an unwinder will abort the process on failure. I'm using this in the runtime tests to guarantee that a call to `assert!` actually triggers some kind of failure (an abort) instead of silently doing nothing. This is essentially in lieu of a working linked failure implementation.