Re-enable the --lib tests

This commit is contained in:
Stephen Akridge 2019-01-07 15:07:00 -08:00 committed by sakridge
parent 0a0c62f384
commit d2cb4e003c
3 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export RUSTFLAGS="-D warnings"
_ scripts/ulimit-n.sh
_ cargo build --all --verbose --features="$FEATURES"
_ cargo test --all --verbose - --features="$FEATURES" --lib -- --nocapture --test-threads=1
_ cargo test --all --verbose --features="$FEATURES" --lib -- --nocapture --test-threads=1
# Run native program tests (without $FEATURES)
for program in programs/native/*; do

View File

@ -114,6 +114,7 @@ mod tests {
use std::sync::Arc;
#[test]
#[ignore]
fn test_encrypt_file_many_keys_single() {
solana_logger::setup();
@ -158,6 +159,7 @@ mod tests {
}
#[test]
#[ignore]
fn test_encrypt_file_many_keys_multiple_keys() {
solana_logger::setup();

View File

@ -835,6 +835,7 @@ mod tests {
}
#[test]
#[ignore]
fn test_wrong_role_transition() {
// Create the leader node information
let bootstrap_leader_keypair = Arc::new(Keypair::new());
@ -982,6 +983,7 @@ mod tests {
}
#[test]
#[ignore]
fn test_validator_to_leader_transition() {
// Make a leader identity
let leader_keypair = Keypair::new();