diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2018-09-02 20:09:30 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2018-09-02 20:09:30 +0000 |
commit | f5694c93c260a060b181d807960d52bca0d77976 (patch) | |
tree | 2eab1dc1b653f51a781d06c7440aefc11b392630 | |
parent | 9be6659dc6b743023434e897a0119ba7adeb1542 (diff) |
Print SKIPPED if package wycheproof-testvectors is missing. This
is the magic string that is recognized by my test framework.
OK tb@
-rw-r--r-- | regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go index b6fb0968eac..3e8b399e3bf 100644 --- a/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/regress/lib/libcrypto/wycheproof/wycheproof.go @@ -1,4 +1,4 @@ -/* $OpenBSD: wycheproof.go,v 1.44 2018/09/02 17:29:17 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.45 2018/09/02 20:09:29 bluhm Exp $ */ /* * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> @@ -1596,7 +1596,7 @@ func runTestVectors(path string) bool { func main() { if _, err := os.Stat(testVectorPath); os.IsNotExist(err) { fmt.Printf("package wycheproof-testvectors is required for this regress\n") - fmt.Printf("SKIPPING\n") + fmt.Printf("SKIPPED\n") os.Exit(0) } |