-
Bug
-
Resolution: Fixed
-
P4
-
6
-
b78
-
generic
-
generic
test
com/sun/jdi/PrivateTransportTest.sh
fails when running a 32 bit jdk on linux amd64.
Problem Description : com/sun/jdi/PrivateTransportTest.sh test does not support running 32-bit JDK tests on 64-bit platforms.
Since mustang is now supporting 32-bit JDK on 64-bit platform, this test should have the same compatability
Test Case : JDI_REGRESSION :com/sun/jdi/PrivateTransportTest.sh
Platforms : Solaris/Linux AMD64 machines
if [ "${os}" = SunOS ] ; then
libarch=`uname -p`
d64=`echo "${DEBUGGEEFLAGS}" | fgrep -- -d64`
if [ "${libarch}" = sparc ] ; then
if [ "${d64}" != "" ] ; then
libarch=sparcv9
fi
fi
if [ "${libarch}" = i386 ] ; then
if [ "${d64}" != "" ] ; then
libarch=amd64
fi
fi
elif [ "${os}" = Linux ] ; then
libarch=`uname -m`
if [ "${libarch}" = i686 ] ; then
libarch=i386
fi
if [ "${libarch}" = x86_64 ] ; then
libarch=amd64
fi
fi
com/sun/jdi/PrivateTransportTest.sh
fails when running a 32 bit jdk on linux amd64.
Problem Description : com/sun/jdi/PrivateTransportTest.sh test does not support running 32-bit JDK tests on 64-bit platforms.
Since mustang is now supporting 32-bit JDK on 64-bit platform, this test should have the same compatability
Test Case : JDI_REGRESSION :com/sun/jdi/PrivateTransportTest.sh
Platforms : Solaris/Linux AMD64 machines
if [ "${os}" = SunOS ] ; then
libarch=`uname -p`
d64=`echo "${DEBUGGEEFLAGS}" | fgrep -- -d64`
if [ "${libarch}" = sparc ] ; then
if [ "${d64}" != "" ] ; then
libarch=sparcv9
fi
fi
if [ "${libarch}" = i386 ] ; then
if [ "${d64}" != "" ] ; then
libarch=amd64
fi
fi
elif [ "${os}" = Linux ] ; then
libarch=`uname -m`
if [ "${libarch}" = i686 ] ; then
libarch=i386
fi
if [ "${libarch}" = x86_64 ] ; then
libarch=amd64
fi
fi
- relates to
-
JDK-6348743 TEST_BUG: Some serviceability jtreg tests fail on cygwin
-
- Closed
-