Merge pull request #4741 from roc-lang/ignore-dlclose-errors

remove explicit closing of dylib when testing
This commit is contained in:
Brendan Hansknecht 2022-12-12 19:14:41 +00:00 committed by GitHub
commit 662eb5895e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -613,9 +613,6 @@ macro_rules! assert_llvm_evals_to {
CrashTag::User => panic!(r#"User crash with message: "{}""#, msg),
},
}
// artificially extend the lifetime of `lib`
lib.close().unwrap();
};
($src:expr, $expected:expr, $ty:ty) => {