nashorn/bin/rundiff.sh
author ntoda
Thu, 31 Jul 2014 17:01:24 -0700
changeset 25799 1afc4675dc75
parent 24719 f726e9d67629
permissions -rw-r--r--
8044867: Fix raw and unchecked lint warnings in sun.tools.* Reviewed-by: darcy

#!/bin/sh

# do two runs of a script, one optimistic and one pessimistic, expect identical outputs
# if not, display and error message and a diff

which opendiff >/dev/null
RES=$?
if [ $RES = 0 ]; then
    DIFFTOOL=opendiff
else
    DIFFTOOL=diff
fi

OPTIMISTIC=out_optimistic
PESSIMISTIC=out_pessimistic
$JAVA_HOME/bin/java -ea -jar ../dist/nashorn.jar ${@} >$PESSIMISTIC
$JAVA_HOME/bin/java -ea -Dnashorn.optimistic -jar ../dist/nashorn.jar ${@} >$OPTIMISTIC

if ! diff -q $PESSIMISTIC $OPTIMISTIC >/dev/null ; then
    echo "Failure! Results are different"
    echo ""
    $DIFFTOOL $PESSIMISTIC $OPTIMISTIC
else
    echo "OK - Results are identical"
fi