--- /dev/null 2016-11-22 16:08:48.000000000 -0800 +++ new/modules/jdk.packager/src/test/examples/runall.sh 2016-11-22 16:08:48.000000000 -0800 @@ -0,0 +1,14 @@ +#!/bin/bash + +PLATFORM=`bash whichplatform.sh` +APP="" + +if [[ $PLATFORM == 'WIN' ]]; then + APP="Test.exe" +elif [[ $PLATFORM == "MAC" ]]; then + APP="Test.app" +elif [[ $PLATFORM == 'LINUX' ]]; then + APP="Test" +fi + +bash execall.sh $APP