Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Aug 2013 21:54:20 +0000 (UTC)
From:      Jilles Tjoelker <jilles@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r254231 - head/tools/regression/lib/libc/gen
Message-ID:  <201308112154.r7BLsKGh048683@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jilles
Date: Sun Aug 11 21:54:20 2013
New Revision: 254231
URL: http://svnweb.freebsd.org/changeset/base/254231

Log:
  fnmatch(): Add test for r254091 (pattern with single backslash).
  
  This test cannot be converted to an sh(1) test because the syntax would be
  invalid.
  
  PR:		181129
  MFC after:	1 week

Modified:
  head/tools/regression/lib/libc/gen/test-fnmatch.c

Modified: head/tools/regression/lib/libc/gen/test-fnmatch.c
==============================================================================
--- head/tools/regression/lib/libc/gen/test-fnmatch.c	Sun Aug 11 21:46:06 2013	(r254230)
+++ head/tools/regression/lib/libc/gen/test-fnmatch.c	Sun Aug 11 21:54:20 2013	(r254231)
@@ -135,6 +135,8 @@ struct testcase {
 	"\\[", "\\[", 0, FNM_NOMATCH,
 	"\\(", "\\(", 0, FNM_NOMATCH,
 	"\\a", "\\a", 0, FNM_NOMATCH,
+	"\\", "\\", 0, FNM_NOMATCH,
+	"\\", "", 0, 0,
 	"\\*", "\\*", FNM_NOESCAPE, 0,
 	"\\?", "\\?", FNM_NOESCAPE, 0,
 	"\\", "\\", FNM_NOESCAPE, 0,
@@ -236,6 +238,8 @@ write_sh_tests(const char *progname, int
 		if (strchr(t->pattern, '\'') != NULL ||
 		    strchr(t->string, '\'') != NULL)
 			continue;
+		if (t->flags == 0 && strcmp(t->pattern, "\\") == 0)
+			continue;
 		if (num == 1 && t->flags == 0)
 			printf("test%smatch '%s' '%s'\n",
 			    t->result == FNM_NOMATCH ? "no" : "",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308112154.r7BLsKGh048683>