From 89dd5dac6219f9a4c04ada4b5a9c812a88c1c2d4 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 28 Mar 2022 14:38:15 -0400 Subject: chore: fix compile_windows_ext test (#14142) --- cli/tests/integration/compile_tests.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'cli/tests/integration/compile_tests.rs') diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs index c1f42632b..9d1001ed6 100644 --- a/cli/tests/integration/compile_tests.rs +++ b/cli/tests/integration/compile_tests.rs @@ -36,36 +36,6 @@ fn compile() { assert_eq!(output.stdout, "Welcome to Deno!\n".as_bytes()); } -// this is ignored, because when building on a release build, the test attempts -// to download a binary of a yet to be published version. -// TODO(@kitsonk) https://github.com/denoland/deno/issues/14103 -#[ignore] -#[test] -#[cfg(windows)] -// https://github.com/denoland/deno/issues/9667 -fn compile_windows_ext() { - let dir = TempDir::new().unwrap(); - let exe = dir.path().join("welcome_9667"); - let output = util::deno_cmd() - .current_dir(util::root_path()) - .arg("compile") - .arg("--unstable") - .arg("--output") - .arg(&exe) - .arg("--target") - .arg("x86_64-unknown-linux-gnu") - .arg("./test_util/std/examples/welcome.ts") - // TODO(kt3k): Prints command output to the test log for debugging purpose. - // Uncomment this line when this test become stable. - //.stdout(std::process::Stdio::piped()) - .spawn() - .unwrap() - .wait_with_output() - .unwrap(); - assert!(output.status.success()); - assert!(std::path::Path::new(&exe).exists()); -} - #[test] fn standalone_args() { let dir = TempDir::new().unwrap(); -- cgit v1.2.3