public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/26638]  New: Mauve crypto test failures
@ 2006-03-10 20:53 mark at gcc dot gnu dot org
  2006-03-11  7:03 ` [Bug java/26638] " konqueror at gmx dot de
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: mark at gcc dot gnu dot org @ 2006-03-10 20:53 UTC (permalink / raw)
  To: java-prs

The following test in mauve fail with a merged classpath 0.90 tree:

FAIL: gnu.testlet.gnu.javax.crypto.assembly.TestOfAssembly: uncaught exception
at "TestOfAssembly.testSymmetry#1" number 1: java.lang.IllegalStateException
FAIL: gnu.testlet.gnu.javax.crypto.assembly.TestOfCascade: uncaught exception
at "TestOfCascade" number 1: java.lang.IllegalStateException
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testEquality(rijndael):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testPadding(tls1):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testPartial(rijndael):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(rijndael):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(twofish):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(anubis):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(blowfish):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(cast5):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(null):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(des):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(serpent):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(square):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(khazad):
java.lang.IllegalStateException (number 1)
FAIL: gnu.testlet.gnu.javax.crypto.jce.TestOfCipher: testDoFinal(tripledes):
java.lang.IllegalStateException (number 1)

They all fail in a similar way:

java.lang.IllegalStateException
   at gnu.javax.crypto.mode.BaseMode.currentBlockSize (BaseMode.java:244)
   at gnu.javax.crypto.assembly.ModeStage.initDelegate (ModeStage.java:107)
   at gnu.javax.crypto.assembly.Stage.init (Stage.java:156)
   at gnu.javax.crypto.assembly.Cascade.init (Cascade.java:303)
   at gnu.javax.crypto.assembly.CascadeTransformer.initDelegate
(CascadeTransformer.java:81)
   at gnu.javax.crypto.assembly.Transformer.init (Transformer.java:207)
   at gnu.javax.crypto.assembly.Transformer.init (Transformer.java:206)
   at gnu.javax.crypto.assembly.Assembly.init (Assembly.java:141)
   at gnu.testlet.gnu.javax.crypto.assembly.TestOfAssembly.testSymmetry
(TestOfAssembly.java:116)
   at gnu.testlet.gnu.javax.crypto.assembly.TestOfAssembly.test
(TestOfAssembly.java:88)
   at gnu.testlet.SimpleTestHarness.runtest (SimpleTestHarness.java:248)
   at gnu.testlet.SimpleTestHarness.main (SimpleTestHarness.java:396)
1 of 1 tests failed

All these tests succeed with a cacao or jamvm runtime and classpath 0.90.


-- 
           Summary: Mauve crypto test failures
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: java
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: mark at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug java/26638] Mauve crypto test failures
  2006-03-10 20:53 [Bug java/26638] New: Mauve crypto test failures mark at gcc dot gnu dot org
@ 2006-03-11  7:03 ` konqueror at gmx dot de
  2006-03-15  0:20 ` tromey at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: konqueror at gmx dot de @ 2006-03-11  7:03 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from konqueror at gmx dot de  2006-03-11 07:03 -------
I can confirm the same bug for GCJ 4.1 branch with backported GNU
crypto stuff.


-- 

konqueror at gmx dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |konqueror at gmx dot de


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug java/26638] Mauve crypto test failures
  2006-03-10 20:53 [Bug java/26638] New: Mauve crypto test failures mark at gcc dot gnu dot org
  2006-03-11  7:03 ` [Bug java/26638] " konqueror at gmx dot de
@ 2006-03-15  0:20 ` tromey at gcc dot gnu dot org
  2006-03-15  0:25 ` tromey at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-03-15  0:20 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from tromey at gcc dot gnu dot org  2006-03-15 00:20 -------
I looked at this a bit.  First, IMode has a <clinit> method -- this is a bug,
as it is not needed.

Second, I don't understand why, but we leave a slot in the itable for
<clinit>.  There doesn't seem to be any reason to do this; it just bloats
the itable a bit.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-03-15 00:20:08
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug java/26638] Mauve crypto test failures
  2006-03-10 20:53 [Bug java/26638] New: Mauve crypto test failures mark at gcc dot gnu dot org
  2006-03-11  7:03 ` [Bug java/26638] " konqueror at gmx dot de
  2006-03-15  0:20 ` tromey at gcc dot gnu dot org
@ 2006-03-15  0:25 ` tromey at gcc dot gnu dot org
  2006-03-15  5:26 ` tromey at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-03-15  0:25 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from tromey at gcc dot gnu dot org  2006-03-15 00:25 -------
I see something else strange in here.
maybe_yank_clinit() does nothing unless we are compiling to bytecode.
I can't see why that would be.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug java/26638] Mauve crypto test failures
  2006-03-10 20:53 [Bug java/26638] New: Mauve crypto test failures mark at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2006-03-15  0:25 ` tromey at gcc dot gnu dot org
@ 2006-03-15  5:26 ` tromey at gcc dot gnu dot org
  2006-03-15 18:45 ` tromey at gcc dot gnu dot org
  2006-03-15 18:45 ` tromey at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-03-15  5:26 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from tromey at gcc dot gnu dot org  2006-03-15 05:26 -------
Testing a patch.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |tromey at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-03-15 00:20:08         |2006-03-15 05:26:13
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug java/26638] Mauve crypto test failures
  2006-03-10 20:53 [Bug java/26638] New: Mauve crypto test failures mark at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2006-03-15  5:26 ` tromey at gcc dot gnu dot org
@ 2006-03-15 18:45 ` tromey at gcc dot gnu dot org
  2006-03-15 18:45 ` tromey at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-03-15 18:45 UTC (permalink / raw)
  To: java-prs



------- Comment #5 from tromey at gcc dot gnu dot org  2006-03-15 18:45 -------
Subject: Bug 26638

Author: tromey
Date: Wed Mar 15 18:45:02 2006
New Revision: 112094

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=112094
Log:
Correctly reference PR java/26638 in ChangeLogs

Modified:
    trunk/gcc/java/ChangeLog
    trunk/libjava/ChangeLog


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug java/26638] Mauve crypto test failures
  2006-03-10 20:53 [Bug java/26638] New: Mauve crypto test failures mark at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2006-03-15 18:45 ` tromey at gcc dot gnu dot org
@ 2006-03-15 18:45 ` tromey at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-03-15 18:45 UTC (permalink / raw)
  To: java-prs



------- Comment #6 from tromey at gcc dot gnu dot org  2006-03-15 18:45 -------
Fix checked in.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.2.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26638


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-03-15 18:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-10 20:53 [Bug java/26638] New: Mauve crypto test failures mark at gcc dot gnu dot org
2006-03-11  7:03 ` [Bug java/26638] " konqueror at gmx dot de
2006-03-15  0:20 ` tromey at gcc dot gnu dot org
2006-03-15  0:25 ` tromey at gcc dot gnu dot org
2006-03-15  5:26 ` tromey at gcc dot gnu dot org
2006-03-15 18:45 ` tromey at gcc dot gnu dot org
2006-03-15 18:45 ` tromey at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).