Skip to content

Commit 80ec849

Browse files
committed
Run ignored test
1 parent 719d184 commit 80ec849

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

tests/vm.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use gluon::{
1414
vm::{
1515
api::{FunctionRef, Hole, OpaqueValue, ValueRef, IO},
1616
channel::Sender,
17-
thread::{RootedThread, Thread, ThreadInternal},
17+
thread::{Thread, ThreadInternal},
1818
},
1919
Error, ThreadExt,
2020
};
@@ -888,14 +888,11 @@ async fn dont_use_the_implicit_prelude_span_in_the_top_expr() {
888888
}
889889

890890
#[test]
891-
#[ignore] // FIXME
892891
fn deep_clone_partial_application() {
893892
use gluon::base::symbol::Symbol;
894893

895894
let _ = ::env_logger::try_init();
896-
let vm = RootedThread::new();
897-
898-
assert_eq!(vm.allocated_memory(), 0);
895+
let vm = gluon::VmBuilder::new().build();
899896

900897
let child = vm.new_thread().unwrap();
901898

0 commit comments

Comments
 (0)