svn commit: r224026 - user/gabor/tre-integration/tools/test/regex

Gabor Kovesdan gabor at FreeBSD.org
Thu Jul 14 17:50:16 UTC 2011


Author: gabor
Date: Thu Jul 14 17:50:16 2011
New Revision: 224026
URL: http://svn.freebsd.org/changeset/base/224026

Log:
  - Run all tests with LC_ALL=C

Modified:
  user/gabor/tre-integration/tools/test/regex/Makefile

Modified: user/gabor/tre-integration/tools/test/regex/Makefile
==============================================================================
--- user/gabor/tre-integration/tools/test/regex/Makefile	Thu Jul 14 17:43:23 2011	(r224025)
+++ user/gabor/tre-integration/tools/test/regex/Makefile	Thu Jul 14 17:50:16 2011	(r224026)
@@ -11,7 +11,7 @@ test: regmatch
 		str=`echo $${l} | cut -d \; -f 2`; \
 		pat=`echo $${l} | cut -d \; -f 1`; \
 		match=`echo $${l} | cut -d \; -f 3`; \
-		result=`./regmatch/regmatch $${pat} $${str}`; \
+		result=`env LC_ALL=C ./regmatch/regmatch $${pat} $${str}`; \
 		if [ "$${match}" != "$${result}" ]; then \
 			echo "Failed matching pattern $${pat} to string $${str}"; \
 		else \


More information about the svn-src-user mailing list