Make the global options more resilient to unit tests running in parallel.

This commit is contained in:
Josh Matthews 2015-07-21 08:47:14 -04:00
parent cb52cc6658
commit fecb2e3960
7 changed files with 52 additions and 40 deletions

View file

@ -4,6 +4,7 @@
#![feature(alloc)]
#![feature(box_syntax)]
#![feature(box_raw)]
#![feature(core_intrinsics)]
#![feature(custom_derive)]
#![feature(fnbox)]
@ -22,6 +23,7 @@
#![plugin(serde_macros)]
#[macro_use] extern crate log;
#[macro_use] extern crate lazy_static;
extern crate azure;
extern crate alloc;