Trying to cut down the time taken running the test suite, so that we fit in Travis's expectations.

This commit is contained in:
2018-05-12 16:41:55 -07:00
parent 219641da5e
commit 81ccf3e06b
3 changed files with 5 additions and 1 deletions

View File

@@ -123,6 +123,7 @@ fn signed_mod_test()
}
#[test]
#[ignore]
fn modular_exponentiation_test()
{
run_test("tests/math/modexp.tests", 4, |scase| {

View File

@@ -69,6 +69,7 @@ fn dsa_verification_tests()
}
#[test]
#[ignore]
fn dsa_signing_tests()
{
run_test("tests/dsa/signature.test", 9, |case| {

View File

@@ -16,6 +16,7 @@ fn get_signing_hash(s: usize) -> &'static SigningHash {
}
#[test]
#[ignore]
fn rsa_signing_tests()
{
run_test("tests/rsa/signature.test", 7, |case| {
@@ -89,6 +90,7 @@ fn rsa_decryption_tests()
}
#[test]
#[ignore]
fn rsa_encryption_tests()
{
run_test("tests/rsa/encryption.test", 6, |case| {