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.
This commit is contained in:
Alex Crichton
2020-01-09 17:10:05 -06:00
committed by GitHub
parent 317f598969
commit 4197cc562e

View File

@@ -139,7 +139,6 @@ fn write_testsuite_tests(
strategy: &str, strategy: &str,
) -> anyhow::Result<()> { ) -> anyhow::Result<()> {
let path = path.as_ref(); let path = path.as_ref();
println!("cargo:rerun-if-changed={}", path.display());
let testname = extract_name(path); let testname = extract_name(path);
writeln!(out, "#[test]")?; writeln!(out, "#[test]")?;