aboutsummaryrefslogtreecommitdiff
path: root/tests/rt_panic.rs
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-01 11:03:05 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-01 11:03:05 +0000
commitc26cd85ccebf317c2021f6e0fa55fd6c8a14a802 (patch)
tree84073e6bc26e40362df1df64183d1a6e91f7e431 /tests/rt_panic.rs
parentd6160b5e7081cd934c2d566c5da230627b0f46ba (diff)
parent67f287733f1d477619a50533f54676c7ffb41c25 (diff)
downloadtokio-c26cd85ccebf317c2021f6e0fa55fd6c8a14a802.tar.gz
Snap for 9550355 from 67f287733f1d477619a50533f54676c7ffb41c25 to sdk-releaseplatform-tools-34.0.0platform-tools-33.0.4
Change-Id: I828c29b2fcfc9d028082cd2f4b13c5edfe64bb91
Diffstat (limited to 'tests/rt_panic.rs')
-rw-r--r--tests/rt_panic.rs77
1 files changed, 77 insertions, 0 deletions
diff --git a/tests/rt_panic.rs b/tests/rt_panic.rs
new file mode 100644
index 0000000..f9a684f
--- /dev/null
+++ b/tests/rt_panic.rs
@@ -0,0 +1,77 @@
+#![warn(rust_2018_idioms)]
+#![cfg(feature = "full")]
+#![cfg(not(tokio_wasi))] // Wasi doesn't support panic recovery
+
+use futures::future;
+use std::error::Error;
+use tokio::runtime::{Builder, Handle, Runtime};
+
+mod support {
+ pub mod panic;
+}
+use support::panic::test_panic;
+
+#[test]
+fn current_handle_panic_caller() -> Result<(), Box<dyn Error>> {
+ let panic_location_file = test_panic(|| {
+ let _ = Handle::current();
+ });
+
+ // The panic location should be in this file
+ assert_eq!(&panic_location_file.unwrap(), file!());
+
+ Ok(())
+}
+
+#[test]
+fn into_panic_panic_caller() -> Result<(), Box<dyn Error>> {
+ let panic_location_file = test_panic(move || {
+ let rt = current_thread();
+ rt.block_on(async {
+ let handle = tokio::spawn(future::pending::<()>());
+
+ handle.abort();
+
+ let err = handle.await.unwrap_err();
+ assert!(!&err.is_panic());
+
+ let _ = err.into_panic();
+ });
+ });
+
+ // The panic location should be in this file
+ assert_eq!(&panic_location_file.unwrap(), file!());
+
+ Ok(())
+}
+
+#[test]
+fn builder_worker_threads_panic_caller() -> Result<(), Box<dyn Error>> {
+ let panic_location_file = test_panic(|| {
+ let _ = Builder::new_multi_thread().worker_threads(0).build();
+ });
+
+ // The panic location should be in this file
+ assert_eq!(&panic_location_file.unwrap(), file!());
+
+ Ok(())
+}
+
+#[test]
+fn builder_max_blocking_threads_panic_caller() -> Result<(), Box<dyn Error>> {
+ let panic_location_file = test_panic(|| {
+ let _ = Builder::new_multi_thread().max_blocking_threads(0).build();
+ });
+
+ // The panic location should be in this file
+ assert_eq!(&panic_location_file.unwrap(), file!());
+
+ Ok(())
+}
+
+fn current_thread() -> Runtime {
+ tokio::runtime::Builder::new_current_thread()
+ .enable_all()
+ .build()
+ .unwrap()
+}