2019-06-10 11:00:15 -07:00
|
|
|
//! @brief Example Rust-based BPF program that panics
|
|
|
|
|
2020-11-09 13:40:26 -08:00
|
|
|
#[cfg(all(feature = "custom-panic", target_arch = "bpf"))]
|
|
|
|
#[no_mangle]
|
|
|
|
fn custom_panic(info: &core::panic::PanicInfo<'_>) {
|
|
|
|
// Note: Full panic reporting is included here for testing purposes
|
|
|
|
solana_program::info!("program custom panic enabled");
|
|
|
|
solana_program::info!(&format!("{}", info));
|
|
|
|
}
|
|
|
|
|
2020-10-23 17:22:10 -07:00
|
|
|
extern crate solana_program;
|
2020-11-09 13:40:26 -08:00
|
|
|
use solana_program::{
|
|
|
|
account_info::AccountInfo, entrypoint, entrypoint::ProgramResult, pubkey::Pubkey,
|
|
|
|
};
|
2019-06-10 11:00:15 -07:00
|
|
|
|
2020-11-09 13:40:26 -08:00
|
|
|
entrypoint!(process_instruction);
|
|
|
|
fn process_instruction(
|
|
|
|
_program_id: &Pubkey,
|
|
|
|
_accounts: &[AccountInfo],
|
|
|
|
_instruction_data: &[u8],
|
|
|
|
) -> ProgramResult {
|
|
|
|
assert_eq!(1, 2);
|
|
|
|
Ok(())
|
2019-06-10 11:00:15 -07:00
|
|
|
}
|