Skip to content

Commit

Permalink
Avoid tests that run piglet when compiled for Pi
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidmackenzie committed Aug 4, 2024
1 parent e0e864a commit 87899ff
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/piglet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ pub fn run_piglet(config: Option<PathBuf>) -> String {
output
}

#[cfg(not(all(
target_os = "linux",
any(target_arch = "aarch64", target_arch = "arm"),
target_env = "gnu"
)))]
#[test]
fn node_id_is_output() {
let output = run_piglet(None);
Expand Down

0 comments on commit 87899ff

Please sign in to comment.