From edf4da25529c015440718af7ef02200395701776 Mon Sep 17 00:00:00 2001 From: bluhm <> Date: Sun, 2 Sep 2018 20:09:29 +0000 Subject: Print SKIPPED if package wycheproof-testvectors is missing. This is the magic string that is recognized by my test framework. OK tb@ --- src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index b6fb0968ea..3e8b399e3b 100644 --- a/src/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/src/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 * Copyright (c) 2018 Theo Buehler @@ -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) } -- cgit v1.2.3-55-g6feb