From 3d2e52ae7ecdecadad6830f7991fee79185a9ffe Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Mon, 12 Feb 2024 17:13:14 -0700 Subject: chore: continue tests/ re-org (#22396) Split `node_compat_tests` into its own top-level test so its stdout doesn't stomp on the remainder of the tests. --- tests/integration_tests_runner.rs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 tests/integration_tests_runner.rs (limited to 'tests/integration_tests_runner.rs') diff --git a/tests/integration_tests_runner.rs b/tests/integration_tests_runner.rs deleted file mode 100644 index 12e83a019..000000000 --- a/tests/integration_tests_runner.rs +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -pub fn main() { - let mut args = vec!["cargo", "test", "-p", "cli_tests", "--features", "run"]; - - if !cfg!(debug_assertions) { - args.push("--release"); - } - - args.push("--"); - - // If any args were passed to this process, pass them through to the child - let orig_args = std::env::args().skip(1).collect::>(); - let orig_args: Vec<&str> = - orig_args.iter().map(|x| x.as_ref()).collect::>(); - args.extend(orig_args); - - test_util::spawn::exec_replace("cargo", &args).unwrap(); -} -- cgit v1.2.3