Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 May 2010 16:04:32 +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: r207820 - head/tools/regression/bin/sh/errors
Message-ID:  <201005091604.o49G4Wur080072@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jilles
Date: Sun May  9 16:04:32 2010
New Revision: 207820
URL: http://svn.freebsd.org/changeset/base/207820

Log:
  sh: Fix bug in assignment error test.
  
  The test failed if the command returned nonzero exit status, and it really
  should return that.

Modified:
  head/tools/regression/bin/sh/errors/assignment-error1.0

Modified: head/tools/regression/bin/sh/errors/assignment-error1.0
==============================================================================
--- head/tools/regression/bin/sh/errors/assignment-error1.0	Sun May  9 15:41:27 2010	(r207819)
+++ head/tools/regression/bin/sh/errors/assignment-error1.0	Sun May  9 16:04:32 2010	(r207820)
@@ -26,5 +26,5 @@ do
 done
 
 # Other utilities must not abort; we currently still execute them.
-sh -c "readonly a=0; a=1 true; exit $a" 2>/dev/null || exit 1
-sh -c "readonly a=0; a=1 command :; exit $a" 2>/dev/null || exit 1
+sh -c 'readonly a=0; a=1 true; exit $a' 2>/dev/null || exit 1
+sh -c 'readonly a=0; a=1 command :; exit $a' 2>/dev/null || exit 1



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