We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a6f7b4 commit bdc6cfcCopy full SHA for bdc6cfc
src/tools/compiletest/src/runtest.rs
@@ -1733,14 +1733,7 @@ impl<'test> TestCx<'test> {
1733
}
1734
1735
fn is_vxworks_pure_dynamic(&self) -> bool {
1736
- if self.config.target.contains("vxworks") {
1737
- match env::var("RUST_VXWORKS_TEST_DYLINK") {
1738
- Ok(s) => s == "1",
1739
- _ => false
1740
- }
1741
- } else {
1742
- false
1743
+ self.config.target.contains("vxworks") && !self.is_vxworks_pure_static()
1744
1745
1746
fn compose_and_run_compiler(&self, mut rustc: Command, input: Option<String>) -> ProcRes {
0 commit comments