We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e316ba3 + 20b9ea8 commit 3a6f7b4Copy full SHA for 3a6f7b4
src/tools/compiletest/src/runtest.rs
@@ -1723,7 +1723,7 @@ impl<'test> TestCx<'test> {
1723
1724
fn is_vxworks_pure_static(&self) -> bool {
1725
if self.config.target.contains("vxworks") {
1726
- match env::var("RUST_TEST_DYLINK") {
+ match env::var("RUST_VXWORKS_TEST_DYLINK") {
1727
Ok(s) => s != "1",
1728
_ => true
1729
}
@@ -1734,7 +1734,7 @@ impl<'test> TestCx<'test> {
1734
1735
fn is_vxworks_pure_dynamic(&self) -> bool {
1736
1737
1738
Ok(s) => s == "1",
1739
_ => false
1740
0 commit comments