diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-05-14 18:09:26 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-05-14 18:09:26 +0000 |
commit | 34939cf55759548d1de148b4844ad959a28839c7 (patch) | |
tree | 8e2fcfef12071be92038d0b97aa03c7c638c2254 /regress/lib/libcrypto | |
parent | 7866009d6839f418a0e8ffc1c05cdc864343cc9e (diff) |
reinstate an error check that was commented out while waiting for arm
packages to appear
Diffstat (limited to 'regress/lib/libcrypto')
-rw-r--r-- | regress/lib/libcrypto/wycheproof/wycheproof.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go index 5e3c5e46e6a..e36dbe219a2 100644 --- a/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/regress/lib/libcrypto/wycheproof/wycheproof.go @@ -1,4 +1,4 @@ -/* $OpenBSD: wycheproof.go,v 1.118 2020/04/27 19:42:34 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.119 2020/05/14 18:09:25 tb Exp $ */ /* * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> * Copyright (c) 2018, 2019 Theo Buehler <tb@openbsd.org> @@ -2761,10 +2761,9 @@ func main() { if err != nil { log.Fatalf("Failed to glob %v test vectors: %v", test.name, err) } - // XXX put check back after wycheproof-testvectors update to 20191214 - // if len(tvs) == 0 { - // log.Fatalf("Failed to find %v test vectors at %q\n", test.name, testVectorPath) - // } + if len(tvs) == 0 { + log.Fatalf("Failed to find %v test vectors at %q\n", test.name, testVectorPath) + } for _, tv := range tvs { if test.variant == Skip || (test.variant == Normal && skipNormal.Match([]byte(tv))) { fmt.Printf("INFO: Skipping tests from \"%s\"\n", strings.TrimPrefix(tv, testVectorPath+"/")) |