From 9cf7df925d9be1bfad266ddee1fff394ae1bb0b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sun, 15 Dec 2019 11:09:14 +0000 Subject: [PATCH] make "no such file" test pass on Windows --- testdata/scripts/help.txt | 12 ++++++++++++ testdata/scripts/test.txt | 9 --------- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/testdata/scripts/help.txt b/testdata/scripts/help.txt index 92d8928..37746d7 100644 --- a/testdata/scripts/help.txt +++ b/testdata/scripts/help.txt @@ -10,3 +10,15 @@ stderr 'Usage of' ! garble -badflag stderr 'Usage of' ! stdout . + +! garble badcmd +stderr 'unknown command' + +[!windows] ! garble /does/not/exist +[windows] ! garble C:\does\not\exist +stderr 'unknown tool' + +[!windows] ! garble /does/not/exist/compile +[!windows] stderr 'no such file' +[windows] ! garble C:\does\not\exist\compile +[windows] stderr 'file does not exist' diff --git a/testdata/scripts/test.txt b/testdata/scripts/test.txt index 707ee43..876abeb 100644 --- a/testdata/scripts/test.txt +++ b/testdata/scripts/test.txt @@ -1,12 +1,3 @@ -! garble badcmd -stderr 'unknown command' - -! garble /does/not/exist -stderr 'unknown tool' - -! garble /does/not/exist/compile -stderr 'no such file' - exec go test -v stdout 'PASS.*TestFoo'