Prevent stub inclusion when building shared objects (#10875)

This commit is contained in:
Jack May 2020-07-01 13:15:30 -07:00 committed by GitHub
parent 2669ccb864
commit 52526a9bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 17 additions and 10 deletions

View File

@ -53,7 +53,7 @@ pub extern "C" fn entrypoint(_input: *mut u8) -> u64 {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -85,7 +85,7 @@ pub extern "C" fn entrypoint(_input: *mut u8) -> u64 {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -20,7 +20,7 @@ pub extern "C" fn entrypoint(_input: *mut u8) -> u64 {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -201,4 +201,5 @@ fn process_instruction(
Ok(()) Ok(())
} }
// Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();

View File

@ -195,4 +195,5 @@ fn process_instruction(
Ok(()) Ok(())
} }
// Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();

View File

@ -21,7 +21,7 @@ pub extern "C" fn entrypoint(_input: *mut u8) -> u64 {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -29,7 +29,7 @@ pub extern "C" fn entrypoint(_input: *mut u8) -> u64 {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -51,7 +51,7 @@ pub fn many_args_sret(
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -67,7 +67,7 @@ fn process_instruction(
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -26,7 +26,7 @@ pub extern "C" fn entrypoint(_input: *mut u8) -> u64 {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -27,7 +27,7 @@ impl<'a> TestDep {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
// Pulls in the stubs required for `info!()` // Pull in syscall stubs when building for non-BPF targets
solana_sdk::program_stubs!(); solana_sdk::program_stubs!();
#[test] #[test]

View File

@ -1,5 +1,6 @@
//! @brief Stubs for syscalls when building tests for x86 //! @brief Syscall stubs when building for non-BPF targets
#[cfg(not(target_arch = "bpf"))]
fn print_line_to_stdout(_message: &str) { fn print_line_to_stdout(_message: &str) {
#[cfg(not(feature = "program"))] #[cfg(not(feature = "program"))]
{ {
@ -11,6 +12,7 @@ fn print_line_to_stdout(_message: &str) {
} }
} }
#[cfg(not(target_arch = "bpf"))]
#[no_mangle] #[no_mangle]
/// # Safety /// # Safety
pub unsafe fn sol_log_(message: *const u8, length: u64) { pub unsafe fn sol_log_(message: *const u8, length: u64) {
@ -19,11 +21,13 @@ pub unsafe fn sol_log_(message: *const u8, length: u64) {
print_line_to_stdout(string); print_line_to_stdout(string);
} }
#[cfg(not(target_arch = "bpf"))]
#[no_mangle] #[no_mangle]
pub fn sol_log_64_(arg1: u64, arg2: u64, arg3: u64, arg4: u64, arg5: u64) { pub fn sol_log_64_(arg1: u64, arg2: u64, arg3: u64, arg4: u64, arg5: u64) {
print_line_to_stdout(&format!("{} {} {} {} {}", arg1, arg2, arg3, arg4, arg5)); print_line_to_stdout(&format!("{} {} {} {} {}", arg1, arg2, arg3, arg4, arg5));
} }
#[cfg(not(target_arch = "bpf"))]
#[no_mangle] #[no_mangle]
pub fn sol_invoke_signed_rust() { pub fn sol_invoke_signed_rust() {
print_line_to_stdout("sol_invoke_signed_rust()"); print_line_to_stdout("sol_invoke_signed_rust()");
@ -32,6 +36,7 @@ pub fn sol_invoke_signed_rust() {
#[macro_export] #[macro_export]
macro_rules! program_stubs { macro_rules! program_stubs {
() => { () => {
#[cfg(not(target_arch = "bpf"))]
#[test] #[test]
fn pull_in_externs() { fn pull_in_externs() {
use solana_sdk::program_stubs::{sol_invoke_signed_rust, sol_log_, sol_log_64_}; use solana_sdk::program_stubs::{sol_invoke_signed_rust, sol_log_, sol_log_64_};