blob: 922bca7081c59386673026bde5c1aa349b31a164 [file] [log] [blame]
#![cfg(feature = "invocation")]
use std::thread::spawn;
mod util;
use util::{attach_current_thread_permanently, call_java_abs, jvm};
#[test]
fn thread_detaches_when_finished() {
let thread = spawn(|| {
let env = attach_current_thread_permanently();
let val = call_java_abs(&env, -2);
assert_eq!(val, 2);
assert_eq!(jvm().threads_attached(), 1);
});
thread.join().unwrap();
assert_eq!(jvm().threads_attached(), 0);
}