|
From: <and...@us...> - 2009-01-07 09:23:36
|
Revision: 9270
http://plplot.svn.sourceforge.net/plplot/?rev=9270&view=rev
Author: andrewross
Date: 2009-01-07 09:23:31 +0000 (Wed, 07 Jan 2009)
Log Message:
-----------
Add missing spaces between [ and following expression in test scripts.
Modified Paths:
--------------
trunk/plplot_test/test_f77.sh.in
trunk/plplot_test/test_octave.sh.in
Modified: trunk/plplot_test/test_f77.sh.in
===================================================================
--- trunk/plplot_test/test_f77.sh.in 2009-01-07 05:19:13 UTC (rev 9269)
+++ trunk/plplot_test/test_f77.sh.in 2009-01-07 09:23:31 UTC (rev 9270)
@@ -49,7 +49,7 @@
# Look for any PLPLOT ERROR messages from plwarn that do not result in an
# exit code.
is_error=`grep -l 'PLPLOT ERROR' test.error`
- if [-n "$is_error" ] ; then
+ if [ -n "$is_error" ] ; then
exit 1
fi
Modified: trunk/plplot_test/test_octave.sh.in
===================================================================
--- trunk/plplot_test/test_octave.sh.in 2009-01-07 05:19:13 UTC (rev 9269)
+++ trunk/plplot_test/test_octave.sh.in 2009-01-07 09:23:31 UTC (rev 9270)
@@ -122,6 +122,6 @@
# Look for any PLPLOT ERROR messages from plwarn that do not result in an
# exit code.
is_error=`grep -l 'PLPLOT ERROR' test.error`
-if [-n "$is_error" ] ; then
+if [ -n "$is_error" ] ; then
exit 1
fi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|