-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from cuviper/set_no_std
Add getter `no_std()` and setter `set_no_std(bool)`
- Loading branch information
Showing
2 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
extern crate autocfg; | ||
|
||
use std::env; | ||
|
||
/// Tests that we can control the use of `#![no_std]`. | ||
#[test] | ||
fn no_std() { | ||
// Clear the CI `TARGET`, if any, so we're just dealing with the | ||
// host target which always has `std` available. | ||
env::remove_var("TARGET"); | ||
|
||
// Use the same path as this test binary. | ||
let dir = env::current_exe().unwrap().parent().unwrap().to_path_buf(); | ||
env::set_var("OUT_DIR", &format!("{}", dir.display())); | ||
|
||
let mut ac = autocfg::AutoCfg::new().unwrap(); | ||
assert!(!ac.no_std()); | ||
assert!(ac.probe_path("std::mem")); | ||
|
||
// `#![no_std]` was stabilized in Rust 1.6 | ||
if ac.probe_rustc_version(1, 6) { | ||
ac.set_no_std(true); | ||
assert!(ac.no_std()); | ||
assert!(!ac.probe_path("std::mem")); | ||
assert!(ac.probe_path("core::mem")); | ||
} | ||
} |