Add integration test for lib injection

This commit is contained in:
Dimitris Zervas
2023-06-03 18:02:46 +03:00
parent 9180d62d67
commit 141bf26048
9 changed files with 109 additions and 21 deletions

View File

@ -2,3 +2,8 @@
pub extern "C" fn mylib_foo() -> u8 {
10
}
#[no_mangle]
pub extern "C" fn mylib_bar() -> u8 {
100
}