Work around missing lib on linux (Issue #4972) (#4975)

This commit is contained in:
Jack May
2019-07-08 22:24:57 -08:00
committed by GitHub
parent f9a2254688
commit 50c6b5d62d
6 changed files with 32 additions and 15 deletions

View File

@@ -13,9 +13,9 @@ use solana_sdk_bpf_utils::info;
#[no_mangle]
pub extern "C" fn entrypoint(_input: *mut u8) -> bool {
info!("call same package");
info!("Call same package");
assert_eq!(crate::helper::many_args(1, 2, 3, 4, 5, 6, 7, 8, 9), 45);
info!("call another package");
info!("Call another package");
assert_eq!(
solana_bpf_rust_many_args_dep::many_args(1, 2, 3, 4, 5, 6, 7, 8, 9),
45