From 91110aa49645697bd2f2335052f1ee264877ca1e Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 27 Nov 2019 19:54:40 +0000 Subject: Only print the basename of skipped test files. --- src/regress/lib/libcrypto/wycheproof/wycheproof.go | 5 +++-- 1 file changed, 3 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 e35c599059..1bff4155a8 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.95 2019/11/27 19:34:35 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.96 2019/11/27 19:54:40 tb Exp $ */ /* * Copyright (c) 2018 Joel Sing * Copyright (c) 2018, 2019 Theo Buehler @@ -57,6 +57,7 @@ import ( "path/filepath" "regexp" "sort" + "strings" "unsafe" ) @@ -2453,7 +2454,7 @@ func main() { } for _, tv := range tvs { if skip.Match([]byte(tv)) { - fmt.Printf("INFO: Skipping tests from %s\n", tv) + fmt.Printf("INFO: Skipping tests from \"%s\"\n", strings.TrimPrefix(tv, testVectorPath + "/")) continue } if !runTestVectors(tv, webcrypto) { -- cgit v1.2.3-55-g6feb