JDK-4973116 : Regression test tools/javac/unicode/SupplementaryJavaID6.java fails
  • Type: Bug
  • Component: tools
  • Sub-Component: javac
  • Affected Version: 5.0
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: windows_98
  • CPU: x86
  • Submitted: 2003-12-29
  • Updated: 2004-03-03
  • Resolved: 2004-02-03
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
5.0 b37Fixed
Related Reports
Relates :  
Description

Name: vsR10238			Date: 12/29/2003


Filed By       : J2SE-SQA [###@###.###
JDK            : JDK1.5.0-b32
Testbase       : Regression-test
Platform[s]    : Windows 98
Falling test[s]:
         tools/javac/unicode/SupplementaryJavaID6.java

Regression test tools/javac/unicode/SupplementaryJavaID6.java fails using JDK1.5.0 on Windows 98.

The test passed on NT-based Windows platforms and Unix platforms.

The test is for Tiger only and fails to compile using JDK1.4.2-b28 on all platforms.

Test source location:
=====================
/java/re/jdk/1.5.0/promoted/all/b32/ws/j2se/test/tools/javac/unicode/SupplementaryJavaID6.java

jtr file location:
==================
/net/jtgb4u4c.sfbay/export/sail15/results.2/tiger/b32/regtest/win32/win98_linux-17/workDir/test/tools/javac/unicode/SupplementaryJavaID6.jtr

How to reproduce:
=================
Run the following script (you may need to change its variables)

--- script start ---
#!/bin/sh
RESULT_DIR=`pwd`
WORK_DIR=$RESULT_DIR/workDir/test
REPORT_DIR=$RESULT_DIR/reportDir

#Paths in Java Software:
JT_HOME="z:/jct-tools/3.1.2/archive/fcs/binaries"
JEMMY_JAR="x:/Jemmy/jemmy.jar"
JAVA_HOME="z:/jdk/1.5.0/promoted/all/b32/binaries/windows-i586"
TEST_BASE_PATH="z:/jdk/1.5.0/promoted/all/b32/ws/j2se/test"

#Alternative paths outside Java Software:
#JT_HOME="z:/jct-tools/3.1.2/archive/fcs/binaries"
#JEMMY_JAR="x:/Jemmy/jemmy.jar"
#JAVA_HOME="z:/jdk/1.5.0/promoted/all/b32/binaries/windows-i586"
#TEST_BASE_PATH="z:/jdk/1.5.0/promoted/all/b32/ws/j2se/test"

#Alternative paths for the NSK site:
#JT_HOME="h:/java/jct"
#JEMMY_JAR="$JT_HOME/jemmy/jemmy.jar"
#JAVA_HOME="h:/java/jdk1.5.0/win32"
#TEST_BASE_PATH="h:/java/regtest.tiger/test"


TESTVMOPTS="-client"
CLASSPATH="$JT_HOME/classes;$JT_HOME/lib/javatest.jar;$JT_HOME/lib/jtreg.jar"

TEST="tools/javac/unicode/SupplementaryJavaID6.java"

mkdir -p $WORK_DIR/scratch 2>&1
mkdir -p $WORK_DIR/jtData 2>&1
mkdir -p $REPORT_DIR 2>&1

#rm $WORK_DIR/jtData/ResultCache.jtw 2>&1

cd $WORK_DIR/scratch

$JAVA_HOME/bin/java -server -cp $CLASSPATH -DenvVars=TESTJAVAHOME=$JAVA_HOME,TESTVMOPTS=$TESTVMOPTS,DISPLAY=:0,windir=$windir,SystemRoot=$SystemRoot,PATH=${SHELL%/*},CPAPPEND=$JEMMY_JAR,TZ=,LC_ALL=en_US,LC_CTYPE=en_US,LANG=en_US,LPDEST= -DDISPLAY=:0 -DlocalHost="linux-17" -Dprogram=jtreg com.sun.javatest.regtest.Main -a -v default -batch -params -w "$WORK_DIR" -r "$REPORT_DIR" -t "$TEST_BASE_PATH" "$TEST_BASE_PATH/$TEST"

--- script end ---


Test output (jtr part):
=======================
----------System.out:(0/0)----------
----------System.err:(4/355)*----------
h:\java\regtest.tiger\test\tools\javac\unicode\SupplementaryJavaID6.java:22: error while writing SupplementaryJavaID6.?:
C:\results_full\tiger\b32\regtest\win32\win98_linux-17\workDir\test\classes\tools\javac\unicode\SupplementaryJavaID6$?.class (The system cannot find the file specified)
     class \ud801\udc00 {
     ^
1 error
result: Failed. Compilation failed


test result: Failed. Compilation failed


Specific machine info:
======================
Hostname: linux-17
OS: Windows 98



======================================================================

Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: tiger-beta2 FIXED IN: tiger-beta2 INTEGRATED IN: tiger-b37 tiger-beta2 VERIFIED IN: tiger-beta2
14-06-2004

EVALUATION The problem occurs when compiling a Java source with an inner class which contains a supplementary character in its class name. During the inner class file name conversion from Unicode to Windows ANSI code page, it turns into a '?'. Since this is due to the fact that Windows 98/Me do not support Unicode, so the test case should be excluded on those platforms. ###@###.### 2004-01-05
05-01-2004