Skip to content

Commit 65617a9

Browse files
committed
fix mac tests
1 parent eb9674a commit 65617a9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tmc-langs-make/src/plugin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ impl LanguagePlugin for MakePlugin {
272272
}
273273

274274
#[cfg(test)]
275-
#[cfg(target_os = "linux")] // check not installed on other platforms
275+
#[cfg(target_os = "linux")] // check not installed on other CI platforms
276276
mod test {
277277
use super::*;
278278
use std::path::PathBuf;
@@ -367,7 +367,7 @@ mod test {
367367
}
368368

369369
//#[test]
370-
fn runs_tests_failing_valgrind() {
370+
fn _runs_tests_failing_valgrind() {
371371
init();
372372

373373
let temp = copy_test("tests/data/valgrind-failing");

tmc-langs-r/src/plugin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl LanguagePlugin for RPlugin {
116116
}
117117

118118
#[cfg(test)]
119-
#[cfg(unix)]
119+
#[cfg(target_os = "linux")] // tmc-r-testrunner not installed on other CI platforms
120120
mod test {
121121
use super::*;
122122
use std::path::PathBuf;

0 commit comments

Comments
 (0)