diff options
Diffstat (limited to 'tests/matrix/matrix_test.go')
-rw-r--r-- | tests/matrix/matrix_test.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 417e126..625a423 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -72,8 +72,17 @@ var matrix = []testcaseMatrix{ {false, "false", false, true, []string{"-xchacha"}}, } +var matrixAegisAdditions = []testcaseMatrix{ + {false, "auto", false, false, []string{"-aegis"}}, + {true, "auto", false, false, []string{"-aegis"}}, +} + // This is the entry point for the tests func TestMain(m *testing.M) { + if !stupidgcm.BuiltWithoutAegis { + matrix = append(matrix, matrixAegisAdditions...) + } + // Make "testing.Verbose()" return the correct value flag.Parse() var i int |