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 ca78274 commit 615d95fCopy full SHA for 615d95f
src/repl/test.rs
@@ -5,6 +5,7 @@ struct TestEditor {
5
err_expects: VecDeque<bool>,
6
}
7
8
+#[cfg(target_os = "linux")]
9
impl TestEditor {
10
fn new(input: VecDeque<String>, err_expects: VecDeque<bool>) -> Self {
11
Self { input, err_expects }
@@ -58,7 +59,7 @@ impl super::editor::TermEditor for TestEditor {
58
59
60
61
#[test]
-#[cfg(test)]
62
+#[cfg(all(test, target_os = "linux"))]
63
fn test_repl() {
64
let rl = TestEditor::new(
65
VecDeque::from(vec![
0 commit comments