diff options
author | Jakob Unterwurzacher | 2016-10-04 22:29:14 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-04 22:34:12 +0200 |
commit | db5782028aaff99dbf15c62d851a4f6ec8227748 (patch) | |
tree | 78fddba641b4f84ec99ed22dadecb50df1eb9809 /tests/example_filesystems/example_filesystems_test.go | |
parent | b80d01056f35b2d062e73a6c7d4ba3cff3b6ef7e (diff) |
tests: skip tests with -openssl=false on Go 1.4 and lower
Go versions 1.4 and lower lack NewGCMWithNonceSize(), which causes
a panic in the test.
Diffstat (limited to 'tests/example_filesystems/example_filesystems_test.go')
-rw-r--r-- | tests/example_filesystems/example_filesystems_test.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/example_filesystems/example_filesystems_test.go b/tests/example_filesystems/example_filesystems_test.go index 8b01555..2b0c2ca 100644 --- a/tests/example_filesystems/example_filesystems_test.go +++ b/tests/example_filesystems/example_filesystems_test.go @@ -12,6 +12,7 @@ import ( "os" "testing" + "github.com/rfjakob/gocryptfs/internal/cryptocore" "github.com/rfjakob/gocryptfs/tests/test_helpers" ) @@ -22,7 +23,12 @@ var opensslOpt string func TestMain(m *testing.M) { // Make "testing.Verbose()" return the correct value flag.Parse() - for _, opensslOpt = range []string{"-openssl=false", "-openssl=true"} { + variants := []string{"-openssl=true", "-openssl=false"} + if !cryptocore.HaveModernGoGCM { + fmt.Printf("Skipping Go GCM variant, Go installation is too old") + variants = variants[:1] + } + for _, opensslOpt = range variants { if testing.Verbose() { fmt.Printf("example_filesystems: testing with %q\n", opensslOpt) } |