Return-Path: Delivered-To: apmail-directory-dev-archive@www.apache.org Received: (qmail 25549 invoked from network); 8 Aug 2006 13:32:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Aug 2006 13:32:18 -0000 Received: (qmail 18146 invoked by uid 500); 8 Aug 2006 13:32:12 -0000 Delivered-To: apmail-directory-dev-archive@directory.apache.org Received: (qmail 18084 invoked by uid 500); 8 Aug 2006 13:32:12 -0000 Mailing-List: contact dev-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache Directory Developers List" Delivered-To: mailing list dev@directory.apache.org Received: (qmail 18057 invoked by uid 99); 8 Aug 2006 13:32:12 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Aug 2006 06:32:12 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of j.henne@levigo.de designates 62.206.214.5 as permitted sender) Received: from [62.206.214.5] (HELO mail.levigo.de) (62.206.214.5) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Aug 2006 06:32:09 -0700 Received: from ASSP-nospam (mail.levigo.de [127.0.0.1]) by mail.levigo.de (Postfix) with ESMTP id 50E257E95 for ; Tue, 8 Aug 2006 15:31:44 +0200 (CEST) Received: from 10.208.3.42 ([10.208.3.42] helo=[10.208.3.42]) by ASSP-nospam ; 8 Aug 06 13:31:44 -0000 Message-ID: <44D8923B.70803@levigo.de> Date: Tue, 08 Aug 2006 15:31:39 +0200 From: =?UTF-8?B?SsO2cmcgSGVubmU=?= User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Apache Directory Developers List Subject: Re: svn commit: r429554 - in /directory/trunks/apacheds: core/src/main/java/org/apache/directory/server/core/exception/ core/src/main/java/org/apache/directory/server/core/schema/ server-unit/src/test/java/org/apache/directory/server/ References: <20060808032517.4052B1A981A@eris.apache.org> <44D83B14.2080304@levigo.de> <44D885A8.7020103@bellsouth.net> <44D8879E.8060106@levigo.de> <44D88ABB.4010904@bellsouth.net> In-Reply-To: <44D88ABB.4010904@bellsouth.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Brightmail-Tracker: AAAAAA== X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Alex Karasulu schrieb: > Jörg Henne wrote: >> Alex Karasulu schrieb: >>> >>> Hmmmm the exception service checks with the backend to see if an >>> entry exists in it. Basically we need to tell it not to do this for >>> the schemaSubentry since it is a special virtual entry. I'll have >>> to look at the patch to see how you did this. Did the integration >>> tests pass when you ran them after making this change? >> I let SchemaService override hasEntry(). I did not try the >> integration test, though. How do I do that again? > > Try running this at the top level apacheds directory to run these tests: > > mvn -Dintegration test Thanks. I tried to run the tests. Some failed with an error message which doesn't seem to be related to my changes: java.io.IOException: Unable to delete file: server-work\system\objectClass.lg at org.apache.commons.io.FileUtils.forceDelete(FileUtils.java:1087) at org.apache.commons.io.FileUtils.cleanDirectory(FileUtils.java:811) at org.apache.commons.io.FileUtils.deleteDirectory(FileUtils.java:777) at org.apache.commons.io.FileUtils.forceDelete(FileUtils.java:1079) at org.apache.commons.io.FileUtils.cleanDirectory(FileUtils.java:811) at org.apache.commons.io.FileUtils.deleteDirectory(FileUtils.java:777) at org.apache.directory.server.core.unit.AbstractTestCase.doDelete(AbstractTestCase.java:216) at org.apache.directory.server.core.unit.AbstractTestCase.setUp(AbstractTestCase.java:202) at junit.framework.TestCase.runBare(TestCase.java:125) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source) at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source) at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:210) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:135) at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:122) at org.apache.maven.surefire.Surefire.run(Surefire.java:129) at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source) at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;I)Ljava.lang.Object;(Unknown Source) at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:261) at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:781) I haven't had time to dig a bit deeper, though. Joerg Henne