From 4197cc562e9e72edb5981ff914334efef64f2280 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 9 Jan 2020 17:10:05 -0600 Subject: [PATCH] Don't rebuild the test suite if wast files change (#787) They're read dynamically so there's no need to rebuild the test suite, it'll automatically pick up the changes when it's read while the tests are executed. --- build.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/build.rs b/build.rs index 4eed5d4154..10613feef6 100644 --- a/build.rs +++ b/build.rs @@ -139,7 +139,6 @@ fn write_testsuite_tests( strategy: &str, ) -> anyhow::Result<()> { let path = path.as_ref(); - println!("cargo:rerun-if-changed={}", path.display()); let testname = extract_name(path); writeln!(out, "#[test]")?;