summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRy Dahl <ry@tinyclouds.org>2019-12-10 19:20:08 +0800
committerBert Belder <bertbelder@gmail.com>2019-12-10 12:20:08 +0100
commit4b9953b6ac9d07f9d54f2f29c8fa33c0abcdc906 (patch)
treea15b48355dcf6d62c7dd826e11353b7af25342d6
parent90c5aadbca8b47fc43bd3ece80e007b1b546c402 (diff)
Disable flaky plugin test on windows (#3474)
-rw-r--r--test_plugin/tests/integration_tests.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/test_plugin/tests/integration_tests.rs b/test_plugin/tests/integration_tests.rs
index a6790d013..9304560f7 100644
--- a/test_plugin/tests/integration_tests.rs
+++ b/test_plugin/tests/integration_tests.rs
@@ -12,6 +12,8 @@ const BUILD_VARIANT: &str = "debug";
#[cfg(not(debug_assertions))]
const BUILD_VARIANT: &str = "release";
+// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason.
+#[cfg(not(windows))]
#[test]
fn basic() {
let mut build_plugin_base = Command::new("cargo");