From d2c0fae4f657d01b692d04056f997c611b96299b Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 26 Feb 2017 19:53:29 +0100 Subject: tests: somewhat support testing without openssl You will still get lots of test error, but at least the tests will run. --- tests/example_filesystems/example_filesystems_test.go | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'tests/example_filesystems') diff --git a/tests/example_filesystems/example_filesystems_test.go b/tests/example_filesystems/example_filesystems_test.go index b14f14d..5192278 100644 --- a/tests/example_filesystems/example_filesystems_test.go +++ b/tests/example_filesystems/example_filesystems_test.go @@ -13,6 +13,7 @@ import ( "testing" "github.com/rfjakob/gocryptfs/internal/cryptocore" + "github.com/rfjakob/gocryptfs/internal/stupidgcm" "github.com/rfjakob/gocryptfs/tests/test_helpers" ) @@ -23,10 +24,16 @@ var opensslOpt string func TestMain(m *testing.M) { // Make "testing.Verbose()" return the correct value flag.Parse() - variants := []string{"-openssl=true", "-openssl=false"} - if !cryptocore.HaveModernGoGCM { - fmt.Printf("Skipping Go GCM variant, Go installation is too old") - variants = variants[:1] + var variants []string + if cryptocore.HaveModernGoGCM { + variants = append(variants, "-openssl=false") + } else { + fmt.Println("Skipping Go GCM tests, Go installation is too old") + } + if !stupidgcm.BuiltWithoutOpenssl { + variants = append(variants, "-openssl=true") + } else { + fmt.Println("Skipping OpenSSL tests, I have been compiled without openssl support") } for _, opensslOpt = range variants { if testing.Verbose() { -- cgit v1.2.3