We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 043c19c commit 20b9ea8Copy full SHA for 20b9ea8
src/tools/compiletest/src/runtest.rs
@@ -1727,7 +1727,7 @@ impl<'test> TestCx<'test> {
1727
1728
fn is_vxworks_pure_static(&self) -> bool {
1729
if self.config.target.contains("vxworks") {
1730
- match env::var("RUST_TEST_DYLINK") {
+ match env::var("RUST_VXWORKS_TEST_DYLINK") {
1731
Ok(s) => s != "1",
1732
_ => true
1733
}
@@ -1738,7 +1738,7 @@ impl<'test> TestCx<'test> {
1738
1739
fn is_vxworks_pure_dynamic(&self) -> bool {
1740
1741
1742
Ok(s) => s == "1",
1743
_ => false
1744
0 commit comments