diff options
author | Frank Denis | 2025-03-12 00:54:35 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-03-12 20:43:23 +0100 |
commit | d5d26d75247d4fcc269cd0494cb85c7e62618c89 (patch) | |
tree | 5b1409763bf2b03fdbf859e3169732157e704615 /tests | |
parent | e3e76e275d8edf294a4a64897f44a5ef0b70bfeb (diff) |
Move aegis out of stupidgcm
Diffstat (limited to 'tests')
-rw-r--r-- | tests/matrix/matrix_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 625a423..0476764 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -24,6 +24,7 @@ import ( "golang.org/x/sys/unix" + "github.com/aegis-aead/go-libaegis/common" "github.com/rfjakob/gocryptfs/v2/internal/stupidgcm" "github.com/rfjakob/gocryptfs/v2/tests/test_helpers" ) @@ -79,7 +80,7 @@ var matrixAegisAdditions = []testcaseMatrix{ // This is the entry point for the tests func TestMain(m *testing.M) { - if !stupidgcm.BuiltWithoutAegis { + if !common.Available { matrix = append(matrix, matrixAegisAdditions...) } |