1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-18 21:35:31 -05:00
denoland-deno/tests/util/server/src/test_server.rs

22 lines
650 B
Rust
Raw Normal View History

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
2020-09-21 08:26:41 -04:00
#![allow(clippy::print_stdout)]
#![allow(clippy::print_stderr)]
fn main() {
setup_panic_hook();
test_server::servers::run_all_servers();
}
fn setup_panic_hook() {
// Tokio does not exit the process when a task panics, so we define a custom
// panic hook to implement this behaviour.
let orig_hook = std::panic::take_hook();
std::panic::set_hook(Box::new(move |panic_info| {
eprintln!("\n============================================================");
eprintln!("Test server panicked!\n");
orig_hook(panic_info);
std::process::exit(1);
}));
}