-
Bug
-
Resolution: Won't Fix
-
P1
-
None
-
7u6
-
None
-
generic
-
os_x
#!/bin/bash
if [[ -z $1 ]]; then
echo
echo "Usage: ./mac-cobundle.sh b<build number>"
echo " ex: ./mac-cobundle.sh b09"
echo
exit 1
fi
rm -rf cobundle
mkdir cobundle
cd cobundle
echo Mac cobundle test for build $1
echo copying 7u6 $1 bundle for macosx-x64
cp /net/sqenfs-1/export1/jdk/re/7u6/promoted/ea/${1}/bundles/macosx-x64/jre-7u6-ea-macosx-x64.zip .
unzip -q jre-7u6-ea-macosx-x64.zip
echo copying latest FX bundles sdk and samples
echo samples...
cp /java/re/javafx/jdk-cobundle/7u6/macosx-x86_64/ga-samples.zip .
The following scripts developed by Rocky is used to download and unzip the bundle:
unzip -q ga-samples.zip
echo making fx dir...
mkdir fx
cd fx
echo sdk...
cp /java/re/javafx/jdk-cobundle/7u6/macosx-x86_64/javafx-sdk-for-cobundle.zip .
unzip -q javafx-sdk-for-cobundle.zip
mv ../ga-samples .
ls -l
echo moving jre to rt
mv jre rt
cd ga-samples
echo testing version...
../../jre1.7.0_06/bin/java -version
sleep 10
echo running sample...
../../jre1.7.0_06/bin/java -jar Ensemble.jar
After play with example then click on "x" at the top right corner of Ensemble frame, I got this message. It can be easily repeated.
I also noticed that when you start Ensemble and then click on "x" immediately, then there was no crash.
This is a javafx issue, when I tried to find a proper product and category for the bug, I did not find a product javafx (only javafx-sdk but that for Java FX Script compiler & runtime not javafx).
The crash is reproducible on two differnt Mac OS X 10.7.4 machines.
Since javafx team track its issue in jira, so I close this bug, should I book the issue in jira?
if [[ -z $1 ]]; then
echo
echo "Usage: ./mac-cobundle.sh b<build number>"
echo " ex: ./mac-cobundle.sh b09"
echo
exit 1
fi
rm -rf cobundle
mkdir cobundle
cd cobundle
echo Mac cobundle test for build $1
echo copying 7u6 $1 bundle for macosx-x64
cp /net/sqenfs-1/export1/jdk/re/7u6/promoted/ea/${1}/bundles/macosx-x64/jre-7u6-ea-macosx-x64.zip .
unzip -q jre-7u6-ea-macosx-x64.zip
echo copying latest FX bundles sdk and samples
echo samples...
cp /java/re/javafx/jdk-cobundle/7u6/macosx-x86_64/ga-samples.zip .
The following scripts developed by Rocky is used to download and unzip the bundle:
unzip -q ga-samples.zip
echo making fx dir...
mkdir fx
cd fx
echo sdk...
cp /java/re/javafx/jdk-cobundle/7u6/macosx-x86_64/javafx-sdk-for-cobundle.zip .
unzip -q javafx-sdk-for-cobundle.zip
mv ../ga-samples .
ls -l
echo moving jre to rt
mv jre rt
cd ga-samples
echo testing version...
../../jre1.7.0_06/bin/java -version
sleep 10
echo running sample...
../../jre1.7.0_06/bin/java -jar Ensemble.jar
After play with example then click on "x" at the top right corner of Ensemble frame, I got this message. It can be easily repeated.
I also noticed that when you start Ensemble and then click on "x" immediately, then there was no crash.
This is a javafx issue, when I tried to find a proper product and category for the bug, I did not find a product javafx (only javafx-sdk but that for Java FX Script compiler & runtime not javafx).
The crash is reproducible on two differnt Mac OS X 10.7.4 machines.
Since javafx team track its issue in jira, so I close this bug, should I book the issue in jira?