|
From: <arj...@us...> - 2013-07-18 19:01:10
|
Revision: 12428
http://sourceforge.net/p/plplot/code/12428
Author: arjenmarkus
Date: 2013-07-18 19:01:09 +0000 (Thu, 18 Jul 2013)
Log Message:
-----------
Add a dummy argument to the invocation of bash. The Windows format of the
x01, x02, ... files to run the Tcl examples causes an awkward character (CR) to
be added to the extension of the output file.
It is not clear why it is not recognized as a _separate_ option as seems to
be the case with a simple C program. This dummy option is however ignored
and therefore the _proper_ file name is passed to the Tcl program.
Modified Paths:
--------------
trunk/plplot_test/test_tcl.sh.in
Modified: trunk/plplot_test/test_tcl.sh.in
===================================================================
--- trunk/plplot_test/test_tcl.sh.in 2013-07-17 12:50:49 UTC (rev 12427)
+++ trunk/plplot_test/test_tcl.sh.in 2013-07-18 19:01:09 UTC (rev 12428)
@@ -84,12 +84,12 @@
echo "${results}"/x${index}a${lang}%n.$dsuffix | \
@SH_EXECUTABLE@ x${index} -dev $device \
-o "$results"/x${index}${lang}%n.$dsuffix \
- $options 2> test.error >| "${results}"/x${index}${lang}_${dsuffix}.txt
+ $options "" 2> test.error >| "${results}"/x${index}${lang}_${dsuffix}.txt
status_code=$?
else
@SH_EXECUTABLE@ x${index} -dev $device \
-o "$results"/x${index}${lang}%n.$dsuffix \
- $options 2> test.error >| "${results}"/x${index}${lang}_${dsuffix}.txt
+ $options "" 2> test.error >| "${results}"/x${index}${lang}_${dsuffix}.txt
status_code=$?
fi
cat test.error
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|