Revision: 77207
          http://sourceforge.net/p/brlcad/code/77207
Author:   starseeker
Date:     2020-09-24 11:44:38 +0000 (Thu, 24 Sep 2020)
Log Message:
-----------
Test to see if this is what Jenkins/BSD is unhappy about with the benchmark 
changes.

Modified Paths:
--------------
    brlcad/trunk/bench/run.sh

Modified: brlcad/trunk/bench/run.sh
===================================================================
--- brlcad/trunk/bench/run.sh   2020-09-24 06:43:37 UTC (rev 77206)
+++ brlcad/trunk/bench/run.sh   2020-09-24 11:44:38 UTC (rev 77207)
@@ -613,14 +613,18 @@
 fi
 
 # sanity check: make sure $CMP runs
-out=`echo "" | eval \"$CMP\" - - 2>&1`
+echo "" > tmp1
+echo "" > tmp2
+out=`echo "" | eval \"$CMP\" tmp1 tmp2 2>&1`
 ret=$?
 if test ! "x${ret}" = "x0" ; then
     $ECHO
     $ECHO "ERROR:  CMP does not seem to work as expected"
     $ECHO "        (output was [$out])"
+    rm -f tmp1 tmp2
     exit 2
 fi
+rm -f tmp1 tmp2
 
 # sanity check: make sure $ELP runs
 out=`eval \"$ELP\" 0 2>&1`

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to