Make sure all tests and benches actually use ralloc as their global allocator
ralloc doesn't mark itself as a global allocator when it gets extern crate
ed in by default, and this pull request ensures that each bench or test that will be run declared ralloc to be the global allocator.
This is important because otherwise we don't actually test ralloc when cargo test
is run.