aboutsummaryrefslogtreecommitdiff
path: root/vendor/autocfg/tests/rustflags.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/autocfg/tests/rustflags.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/autocfg/tests/rustflags.rs')
-rw-r--r--vendor/autocfg/tests/rustflags.rs33
1 files changed, 0 insertions, 33 deletions
diff --git a/vendor/autocfg/tests/rustflags.rs b/vendor/autocfg/tests/rustflags.rs
deleted file mode 100644
index f054546..0000000
--- a/vendor/autocfg/tests/rustflags.rs
+++ /dev/null
@@ -1,33 +0,0 @@
-extern crate autocfg;
-
-use std::env;
-
-/// Tests that autocfg uses the RUSTFLAGS or CARGO_ENCODED_RUSTFLAGS
-/// environment variables when running rustc.
-#[test]
-fn test_with_sysroot() {
- // 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()));
-
- // If we have encoded rustflags, they take precedence, even if empty.
- env::set_var("CARGO_ENCODED_RUSTFLAGS", "");
- env::set_var("RUSTFLAGS", &format!("-L {}", dir.display()));
- let ac = autocfg::AutoCfg::new().unwrap();
- assert!(ac.probe_sysroot_crate("std"));
- assert!(!ac.probe_sysroot_crate("autocfg"));
-
- // Now try again with useful encoded args.
- env::set_var(
- "CARGO_ENCODED_RUSTFLAGS",
- &format!("-L\x1f{}", dir.display()),
- );
- let ac = autocfg::AutoCfg::new().unwrap();
- assert!(ac.probe_sysroot_crate("autocfg"));
-
- // Try the old-style RUSTFLAGS, ensuring HOST != TARGET.
- env::remove_var("CARGO_ENCODED_RUSTFLAGS");
- env::set_var("HOST", "lol");
- let ac = autocfg::AutoCfg::new().unwrap();
- assert!(ac.probe_sysroot_crate("autocfg"));
-}