Skip to content

Commit 23a7798

Browse files
committed
tests/run-make/rustc_fluent_macro-hyphen-package: don't run on odd os
1 parent d1d0b9b commit 23a7798

File tree

1 file changed

+5
-1
lines changed
  • tests/run-make/rustc_fluent_macro-hyphen-package

1 file changed

+5
-1
lines changed

tests/run-make/rustc_fluent_macro-hyphen-package/rmake.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@ use run_make_support::external_deps::cargo::cargo;
44
// packages that have hyphens in their package name.
55

66
fn main() {
7-
cargo().arg("build").arg("--manifest-path=./Cargo.toml").run();
7+
// only run on standard OSes that support rustc_private.
8+
#[cfg(all(any(unix, windows), not(wasm)))]
9+
{
10+
cargo().arg("build").arg("--manifest-path=./Cargo.toml").run();
11+
}
812
}

0 commit comments

Comments
 (0)