Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/pkgsrc/pkgtools/pkglint/files/Attic/vartypecheck_test.go,v rcsdiff: /ftp/cvs/cvsroot/pkgsrc/pkgtools/pkglint/files/Attic/vartypecheck_test.go,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.48 retrieving revision 1.49 diff -u -p -r1.48 -r1.49 --- pkgsrc/pkgtools/pkglint/files/Attic/vartypecheck_test.go 2019/05/21 17:59:48 1.48 +++ pkgsrc/pkgtools/pkglint/files/Attic/vartypecheck_test.go 2019/05/26 14:05:57 1.49 @@ -534,13 +534,18 @@ func (s *Suite) Test_VartypeCheck_FileMa vt.Varname("FNAME") vt.Values( + "filename.txt", + "*.txt", + "[12345].txt", + "[0-9].txt", + "???.txt", "FileMask with spaces.docx", "OS/2-manual.txt") vt.Output( - "WARN: filename.mk:1: The filename pattern \"FileMask with spaces.docx\" "+ + "WARN: filename.mk:6: The filename pattern \"FileMask with spaces.docx\" "+ "contains the invalid characters \" \".", - "WARN: filename.mk:2: The filename pattern \"OS/2-manual.txt\" "+ + "WARN: filename.mk:7: The filename pattern \"OS/2-manual.txt\" "+ "contains the invalid character \"/\".") vt.Op(opUseMatch)