Ignore log tests due to concurrency conflicts (#9719)
This commit is contained in:
@ -258,7 +258,6 @@ impl HelperObject<BPFError> for HelperSolAllocFree {
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use serial_test_derive::serial;
|
||||
use solana_sdk::{
|
||||
instruction::{AccountMeta, Instruction},
|
||||
pubkey::Pubkey,
|
||||
@ -404,10 +403,10 @@ mod tests {
|
||||
.unwrap();
|
||||
}
|
||||
|
||||
// Serialize this test: solana_logger conflicts when running tests concurrently,
|
||||
// Ignore this test: solana_logger conflicts when running tests concurrently,
|
||||
// this results in the bad string length being ignored and not returning an error
|
||||
#[test]
|
||||
#[serial]
|
||||
#[ignore]
|
||||
fn test_helper_sol_log() {
|
||||
let string = "Gaggablaghblagh!";
|
||||
let addr = string.as_ptr() as *const _ as u64;
|
||||
@ -432,10 +431,10 @@ mod tests {
|
||||
.unwrap_err();
|
||||
}
|
||||
|
||||
// Serialize this test: solana_logger conflicts when running tests concurrently,
|
||||
// Ignore this test: solana_logger conflicts when running tests concurrently,
|
||||
// this results in the bad string length being ignored and not returning an error
|
||||
#[test]
|
||||
#[serial]
|
||||
#[ignore]
|
||||
fn test_helper_sol_log_u64() {
|
||||
solana_logger::setup_with_default("solana=info");
|
||||
|
||||
|
Reference in New Issue
Block a user