Skip to content

Commit 094036b

Browse files
committed
Remove test-sbf feature
1 parent fe2f840 commit 094036b

24 files changed

+0
-47
lines changed

p-token/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ crate-type = ["cdylib"]
1313

1414
[features]
1515
logging = []
16-
test-sbf = []
1716

1817
[dependencies]
1918
pinocchio = { version = "0.7", git = "https://github.com/febo/pinocchio.git", branch = "febo/close-unstable" }

p-token/tests/amount_to_ui_amount.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{mint, TOKEN_PROGRAM_ID};

p-token/tests/approve.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/approve_checked.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/batch.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use crate::setup::TOKEN_PROGRAM_ID;

p-token/tests/burn.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/burn_checked.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/close_account.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/freeze_account.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/initialize_account.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{mint, TOKEN_PROGRAM_ID};

p-token/tests/initialize_account2.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{mint, TOKEN_PROGRAM_ID};

p-token/tests/initialize_account3.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{mint, TOKEN_PROGRAM_ID};

p-token/tests/initialize_mint.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use std::mem::size_of;

p-token/tests/initialize_mint2.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use std::mem::size_of;

p-token/tests/initialize_multisig.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::TOKEN_PROGRAM_ID;

p-token/tests/initialize_multisig2.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::TOKEN_PROGRAM_ID;

p-token/tests/mint_to.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/mint_to_checked.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/revoke.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/set_authority.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{mint, TOKEN_PROGRAM_ID};

p-token/tests/thaw_account.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/transfer.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/transfer_checked.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{account, mint, TOKEN_PROGRAM_ID};

p-token/tests/ui_amount_to_amount.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg(feature = "test-sbf")]
2-
31
mod setup;
42

53
use setup::{mint, TOKEN_PROGRAM_ID};

0 commit comments

Comments
 (0)