diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-28 14:38:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 14:38:15 -0400 |
commit | 89dd5dac6219f9a4c04ada4b5a9c812a88c1c2d4 (patch) | |
tree | 529a01aa8cb965142530afd981537ff4d1b23268 /cli/tests/integration/compile_tests.rs | |
parent | 35cdf4926d941fb054e738390fbb829ba83b4393 (diff) |
chore: fix compile_windows_ext test (#14142)
Diffstat (limited to 'cli/tests/integration/compile_tests.rs')
-rw-r--r-- | cli/tests/integration/compile_tests.rs | 30 |
1 files changed, 0 insertions, 30 deletions
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(); |