public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* RFC: add "not-a-test" tag to several tests
@ 2006-06-23 16:31 Anthony Balkissoon
  2006-06-23 17:42 ` Tom Tromey
  2006-06-26 14:20 ` Anthony Balkissoon
  0 siblings, 2 replies; 8+ messages in thread
From: Anthony Balkissoon @ 2006-06-23 16:31 UTC (permalink / raw)
  To: mauve-patches; +Cc: audriusa

[-- Attachment #1: Type: text/plain, Size: 3607 bytes --]

This patch adds the "not-a-test" tag to several tests.  

This is RFC because these were not my tests, if you are the author of
one or more of these tests and disagree with the not-a-test label,
please say so.  Almost certainly that won't be the case because these
files did not implement Testlet or call TestHarness.test(), but since
they're not mine I just want to make sure.

Cheers,
Tony

2006-06-23  Anthony Balkissoon  <abalkiss@redhat.com>

	* RunnerProcess.java:
	(FAILED_TO_LOAD_DESCRIPTION): New field.
	(runtest): Set description to FAILED_TO_LOAD_DESCRIPTION if the test
	fails to load.  Print out a suggestion that perhaps the file should 
	be marked "not-a-test".
	* gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java: Marked not-a-test.
	* gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java: 
	Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java:
	Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java: Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java: Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java: Likewise.	
	* gnu/testlet/org/omg/CORBA/ORB/RF11/B.java: Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java: Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java: Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java: Likewise.
	* gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java: 
	Likewise.
	* gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java: 
	Likewise.
	* gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java: Likewise.
	* gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java: 
	Likewise.
	* gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java: 
	Likewise.
	* gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java: Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/Test.java: Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java: 
	Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java: Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java: 
	Likewise.
	*
gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java: Likewise.
	*
gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java: Likewise.
	*
gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java:Likewise.
	*
gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java: Likewise.
	*
gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java: Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java:
	Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/TestOperations.java: Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/TestUtil.java: Likewise.
	* gnu/testlet/org/omg/PortableServer/POA/Test_impl.java: Likewise.
	*
gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java: Likewise.
	*
gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java: Likewise.
	*
gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java: Likewise.
	*
gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java: Likewise.
	* gnu/testlet/runner/CheckResult.java: Likewise.
	* gnu/testlet/runner/ClassResult.java: Likewise.
	* gnu/testlet/runner/PackageResult.java: Likewise.
	* gnu/testlet/runner/RunResult.java: Likewise.
	* gnu/testlet/runner/Tags.java: Likewise.
	* gnu/testlet/runner/TestResult.java: Likewise.
	* gnu/testlet/runner/XMLGenerator.java: Likewise.

[-- Attachment #2: NotATest.diff --]
[-- Type: text/x-patch, Size: 28851 bytes --]

Index: RunnerProcess.java
===================================================================
RCS file: /cvs/mauve/mauve/RunnerProcess.java,v
retrieving revision 1.8
diff -u -r1.8 RunnerProcess.java
--- RunnerProcess.java	19 Jun 2006 22:07:37 -0000	1.8
+++ RunnerProcess.java	23 Jun 2006 16:09:51 -0000
@@ -51,6 +51,9 @@
   // A description of files that are not tests
   private static final String NOT_A_TEST_DESCRIPTION = "not-a-test";
   
+  // A description of files that are not tests
+  private static final String FAILED_TO_LOAD_DESCRIPTION = "failed-to-load";
+  
   // Total number of harness.check calls since the last checkpoint
   private int count = 0;
   
@@ -256,6 +259,8 @@
       }
     catch (Throwable ex)
       {
+        description = FAILED_TO_LOAD_DESCRIPTION;
+        
         // Maybe the file was marked not-a-test, check that before we report
         // it as an error
         try
@@ -284,8 +289,8 @@
         
         String d = "FAIL: " + stripPrefix(name)
                    + "uncaught exception when loading";
-        currentResult.addException(ex, "failed loading class ",
-                                   "couldn't load: " + name);
+        currentResult.addException(ex, "failed loading class: " + name,
+                                   "Should the test be marked not-a-test?" );
         if (verbose || exceptions)
           d += ": " + ex.toString();
 
Index: gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java,v
retrieving revision 1.1
diff -u -r1.1 RMI_test.java
--- gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java	6 Oct 2005 09:30:56 -0000	1.1
+++ gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java	23 Jun 2006 16:09:56 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Not a test, required by RMI_IIOP.java.
 
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
Index: gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java,v
retrieving revision 1.1
diff -u -r1.1 Verifyer.java
--- gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java	17 Mar 2005 12:33:36 -0000	1.1
+++ gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 Audrius Meskauskas <audriusa@bluewin.ch>
 
 // This file is part of Mauve.
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java,v
retrieving revision 1.1
diff -u -r1.1 _asyncImplBase.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -51,4 +52,4 @@
   {
     return __ids;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java,v
retrieving revision 1.1
diff -u -r1.1 _asyncStub.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -77,4 +78,4 @@
   {
     return (String[]) __ids.clone();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java,v
retrieving revision 1.1
diff -u -r1.1 assServant.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -37,4 +38,4 @@
       }
     return duration;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java,v
retrieving revision 1.1
diff -u -r1.1 async.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
Index: gnu/testlet/org/omg/CORBA/ORB/RF11/B.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/RF11/B.java,v
retrieving revision 1.1
diff -u -r1.1 B.java
--- gnu/testlet/org/omg/CORBA/ORB/RF11/B.java	4 Jun 2005 12:00:34 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/RF11/B.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) 2000, 2001 NEC Corporation.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java,v
retrieving revision 1.1
diff -u -r1.1 NEC_RF11.java
--- gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java	4 Jun 2005 12:00:34 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) 2000, 2001 NEC Corporation.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java,v
retrieving revision 1.1
diff -u -r1.1 rf11Operations.java
--- gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java	4 Jun 2005 12:00:34 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) 2000, 2001 NEC Corporation.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java,v
retrieving revision 1.1
diff -u -r1.1 comTester.java
--- gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java	18 May 2005 21:56:36 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /* comTester.java --
    Copyright (C) 2005 Free Software Foundation, Inc.
 
Index: gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java,v
retrieving revision 1.1
diff -u -r1.1 ourUserException.java
--- gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java	18 May 2005 21:56:36 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /* ourUserException.java --
    Copyright (C) 2005 Free Software Foundation, Inc.
 
Index: gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java,v
retrieving revision 1.1
diff -u -r1.1 mirror.java
--- gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java	25 May 2005 19:45:26 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -63,4 +64,4 @@
   {
     return new String[] { getClass().getName() };
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java,v
retrieving revision 1.1
diff -u -r1.1 Greetings.java
--- gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java	11 Jun 2005 17:32:42 -0000	1.1
+++ gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 * This file is part of the CORBA 2_3 tests, the test executable
 * class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
@@ -17,4 +18,4 @@
   void hello(cmInfoHolder w1,
              InfoHolder w2
             );
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java,v
retrieving revision 1.1
diff -u -r1.1 InfoValueFactory.java
--- gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java	11 Jun 2005 17:32:42 -0000	1.1
+++ gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 * This file is part of the CORBA 2_3 tests, the test executable
 * class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
@@ -13,4 +14,4 @@
   extends org.omg.CORBA.portable.ValueFactory
 {
   Info create(String name, String message);
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java,v
retrieving revision 1.1
diff -u -r1.1 cmInfoValueFactory.java
--- gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java	11 Jun 2005 17:32:42 -0000	1.1
+++ gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 * This file is part of the CORBA 2_3 tests, the test executable
 * class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
@@ -13,4 +14,4 @@
   extends org.omg.CORBA.portable.ValueFactory
 {
 
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java,v
retrieving revision 1.1
diff -u -r1.1 TestEnum.java
--- gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java	7 Aug 2005 17:28:22 -0000	1.1
+++ gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) IONA Technologies, 2001.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -75,4 +76,4 @@
   {
     return m_value;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/Test.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/Test.java,v
retrieving revision 1.1
diff -u -r1.1 Test.java
--- gnu/testlet/org/omg/PortableServer/POA/Test.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/Test.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestDSIRef_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -189,4 +190,4 @@
   {
     return interfaces_;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestDSI_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -175,4 +176,4 @@
       return poa_;
     return super._default_POA();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForward.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardActivator_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -90,4 +91,4 @@
                          )
   {
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardOperations.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -41,4 +42,4 @@
   extends TestOperations
 {
   void deactivate_servant();
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardServer.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -41,4 +42,4 @@
   extends TestLocationForwardServerOperations, org.omg.CORBA.Object,
           org.omg.CORBA.portable.IDLEntity
 {
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardServerMain.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -203,4 +204,4 @@
 
     orb.destroy();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardServerOperations.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -44,4 +45,4 @@
   org.omg.CORBA.Object get_servant();
 
   void deactivate();
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForward_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -97,4 +98,4 @@
   {
     delegate_.aMethod();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestOperations.java,v
retrieving revision 1.1
diff -u -r1.1 TestOperations.java
--- gnu/testlet/org/omg/PortableServer/POA/TestOperations.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestOperations.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/PortableServer/POA/TestUtil.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestUtil.java,v
retrieving revision 1.1
diff -u -r1.1 TestUtil.java
--- gnu/testlet/org/omg/PortableServer/POA/TestUtil.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestUtil.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -102,4 +103,4 @@
 
     //return id1.equals(id2);
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/Test_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/Test_impl.java,v
retrieving revision 1.1
diff -u -r1.1 Test_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/Test_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/Test_impl.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -135,4 +136,4 @@
       return poa_;
     return super._default_POA();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java,v
retrieving revision 1.1
diff -u -r1.1 poa_comTester.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -25,4 +26,4 @@
   extends poa_comTesterOperations, org.omg.CORBA.Object,
           org.omg.CORBA.portable.IDLEntity
 {
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java,v
retrieving revision 1.1
diff -u -r1.1 poa_comTesterOperations.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -51,4 +52,4 @@
    */
   void throwException(int parameter)
                throws ourUserException;
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java,v
retrieving revision 1.1
diff -u -r1.1 remotePoaControl.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -25,4 +26,4 @@
   extends remotePoaControlOperations, org.omg.CORBA.Object,
           org.omg.CORBA.portable.IDLEntity
 {
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java,v
retrieving revision 1.1
diff -u -r1.1 remotePoaControlOperations.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -40,4 +41,4 @@
    * Get the mode of POA being controlled.
    */
   int getPoaMode();
-}
\ No newline at end of file
+}
Index: gnu/testlet/runner/CheckResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/CheckResult.java,v
retrieving revision 1.1
diff -u -r1.1 CheckResult.java
--- gnu/testlet/runner/CheckResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/CheckResult.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/ClassResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/ClassResult.java,v
retrieving revision 1.1
diff -u -r1.1 ClassResult.java
--- gnu/testlet/runner/ClassResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/ClassResult.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/PackageResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/PackageResult.java,v
retrieving revision 1.1
diff -u -r1.1 PackageResult.java
--- gnu/testlet/runner/PackageResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/PackageResult.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/RunResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/RunResult.java,v
retrieving revision 1.1
diff -u -r1.1 RunResult.java
--- gnu/testlet/runner/RunResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/RunResult.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/Tags.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/Tags.java,v
retrieving revision 1.1
diff -u -r1.1 Tags.java
--- gnu/testlet/runner/Tags.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/Tags.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 Copyright (c) 2004, 2005 Thomas Zander <zander@kde.org>
 
Index: gnu/testlet/runner/TestResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/TestResult.java,v
retrieving revision 1.1
diff -u -r1.1 TestResult.java
--- gnu/testlet/runner/TestResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/TestResult.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/XMLGenerator.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/XMLGenerator.java,v
retrieving revision 1.1
diff -u -r1.1 XMLGenerator.java
--- gnu/testlet/runner/XMLGenerator.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/XMLGenerator.java	23 Jun 2006 16:09:58 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 Thomas Zander <zander@kde.org>
 
 // This file is part of Mauve.

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

* Re: RFC: add "not-a-test" tag to several tests
  2006-06-23 16:31 RFC: add "not-a-test" tag to several tests Anthony Balkissoon
@ 2006-06-23 17:42 ` Tom Tromey
  2006-06-26 14:20 ` Anthony Balkissoon
  1 sibling, 0 replies; 8+ messages in thread
From: Tom Tromey @ 2006-06-23 17:42 UTC (permalink / raw)
  To: Anthony Balkissoon; +Cc: mauve-patches, audriusa

Tony>  Almost certainly that won't be the case because these
Tony> files did not implement Testlet or call TestHarness.test(), but since
Tony> they're not mine I just want to make sure.

I didn't read the patch, but for ones that don't implement
Testlet, just go ahead.

Tom

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

* Re: RFC: add "not-a-test" tag to several tests
  2006-06-23 16:31 RFC: add "not-a-test" tag to several tests Anthony Balkissoon
  2006-06-23 17:42 ` Tom Tromey
@ 2006-06-26 14:20 ` Anthony Balkissoon
  2006-06-26 14:40   ` Mark Wielaard
  1 sibling, 1 reply; 8+ messages in thread
From: Anthony Balkissoon @ 2006-06-26 14:20 UTC (permalink / raw)
  To: mauve-patches

[-- Attachment #1: Type: text/plain, Size: 3970 bytes --]

Committed, minus the RunnerProcess change, patch attached.

The RunnerProcess change will come later along with more changes to
RunnerProcess.

Tony

On Fri, 2006-06-23 at 12:31 -0400, Anthony Balkissoon wrote:
> This patch adds the "not-a-test" tag to several tests.  
> 
> This is RFC because these were not my tests, if you are the author of
> one or more of these tests and disagree with the not-a-test label,
> please say so.  Almost certainly that won't be the case because these
> files did not implement Testlet or call TestHarness.test(), but since
> they're not mine I just want to make sure.
> 
> Cheers,
> Tony
> 
> 2006-06-23  Anthony Balkissoon  <abalkiss@redhat.com>
> 
> 	* RunnerProcess.java:
> 	(FAILED_TO_LOAD_DESCRIPTION): New field.
> 	(runtest): Set description to FAILED_TO_LOAD_DESCRIPTION if the test
> 	fails to load.  Print out a suggestion that perhaps the file should 
> 	be marked "not-a-test".
> 	* gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java: Marked not-a-test.
> 	* gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java: 
> 	Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java:
> 	Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java: Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java: Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java: Likewise.	
> 	* gnu/testlet/org/omg/CORBA/ORB/RF11/B.java: Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java: Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java: Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java: Likewise.
> 	* gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java: 
> 	Likewise.
> 	* gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java: 
> 	Likewise.
> 	* gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java: Likewise.
> 	* gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java: 
> 	Likewise.
> 	* gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java: 
> 	Likewise.
> 	* gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java: Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/Test.java: Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java: 
> 	Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java: Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java: 
> 	Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java: Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java: Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java:Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java: Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java: Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java:
> 	Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/TestOperations.java: Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/TestUtil.java: Likewise.
> 	* gnu/testlet/org/omg/PortableServer/POA/Test_impl.java: Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java: Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java: Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java: Likewise.
> 	*
> gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java: Likewise.
> 	* gnu/testlet/runner/CheckResult.java: Likewise.
> 	* gnu/testlet/runner/ClassResult.java: Likewise.
> 	* gnu/testlet/runner/PackageResult.java: Likewise.
> 	* gnu/testlet/runner/RunResult.java: Likewise.
> 	* gnu/testlet/runner/Tags.java: Likewise.
> 	* gnu/testlet/runner/TestResult.java: Likewise.
> 	* gnu/testlet/runner/XMLGenerator.java: Likewise.

[-- Attachment #2: NotATest2.diff --]
[-- Type: text/x-patch, Size: 27445 bytes --]

Index: gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java,v
retrieving revision 1.1
diff -u -r1.1 RMI_test.java
--- gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java	6 Oct 2005 09:30:56 -0000	1.1
+++ gnu/testlet/javax/rmi/CORBA/Tie/RMI_test.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Not a test, required by RMI_IIOP.java.
 
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
Index: gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java,v
retrieving revision 1.1
diff -u -r1.1 Verifyer.java
--- gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java	17 Mar 2005 12:33:36 -0000	1.1
+++ gnu/testlet/javax/xml/parsers/DocumentBuilder/Verifyer.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 Audrius Meskauskas <audriusa@bluewin.ch>
 
 // This file is part of Mauve.
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java,v
retrieving revision 1.1
diff -u -r1.1 _asyncImplBase.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncImplBase.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -51,4 +52,4 @@
   {
     return __ids;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java,v
retrieving revision 1.1
diff -u -r1.1 _asyncStub.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/_asyncStub.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -77,4 +78,4 @@
   {
     return (String[]) __ids.clone();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java,v
retrieving revision 1.1
diff -u -r1.1 assServant.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/assServant.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -37,4 +38,4 @@
       }
     return duration;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java,v
retrieving revision 1.1
diff -u -r1.1 async.java
--- gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java	25 May 2005 11:17:58 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/Asynchron/async.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
Index: gnu/testlet/org/omg/CORBA/ORB/RF11/B.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/RF11/B.java,v
retrieving revision 1.1
diff -u -r1.1 B.java
--- gnu/testlet/org/omg/CORBA/ORB/RF11/B.java	4 Jun 2005 12:00:34 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/RF11/B.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) 2000, 2001 NEC Corporation.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java,v
retrieving revision 1.1
diff -u -r1.1 NEC_RF11.java
--- gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java	4 Jun 2005 12:00:34 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/RF11/NEC_RF11.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) 2000, 2001 NEC Corporation.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java,v
retrieving revision 1.1
diff -u -r1.1 rf11Operations.java
--- gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java	4 Jun 2005 12:00:34 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/RF11/rf11Operations.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) 2000, 2001 NEC Corporation.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java,v
retrieving revision 1.1
diff -u -r1.1 comTester.java
--- gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java	18 May 2005 21:56:36 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/communication/comTester.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /* comTester.java --
    Copyright (C) 2005 Free Software Foundation, Inc.
 
Index: gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java,v
retrieving revision 1.1
diff -u -r1.1 ourUserException.java
--- gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java	18 May 2005 21:56:36 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/ORB/communication/ourUserException.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /* ourUserException.java --
    Copyright (C) 2005 Free Software Foundation, Inc.
 
Index: gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java,v
retrieving revision 1.1
diff -u -r1.1 mirror.java
--- gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java	25 May 2005 19:45:26 -0000	1.1
+++ gnu/testlet/org/omg/CORBA/portable/OutputStream/mirror.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -63,4 +64,4 @@
   {
     return new String[] { getClass().getName() };
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java,v
retrieving revision 1.1
diff -u -r1.1 Greetings.java
--- gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java	11 Jun 2005 17:32:42 -0000	1.1
+++ gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/Greetings.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 * This file is part of the CORBA 2_3 tests, the test executable
 * class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
@@ -17,4 +18,4 @@
   void hello(cmInfoHolder w1,
              InfoHolder w2
             );
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java,v
retrieving revision 1.1
diff -u -r1.1 InfoValueFactory.java
--- gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java	11 Jun 2005 17:32:42 -0000	1.1
+++ gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/InfoValueFactory.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 * This file is part of the CORBA 2_3 tests, the test executable
 * class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
@@ -13,4 +14,4 @@
   extends org.omg.CORBA.portable.ValueFactory
 {
   Info create(String name, String message);
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java,v
retrieving revision 1.1
diff -u -r1.1 cmInfoValueFactory.java
--- gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java	11 Jun 2005 17:32:42 -0000	1.1
+++ gnu/testlet/org/omg/CORBA_2_3/ORB/Valtype/cmInfoValueFactory.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 * This file is part of the CORBA 2_3 tests, the test executable
 * class being gnu.testlet.org.omg.CORBA_2_3.ORB.ValueTypeTest.
@@ -13,4 +14,4 @@
   extends org.omg.CORBA.portable.ValueFactory
 {
 
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java,v
retrieving revision 1.1
diff -u -r1.1 TestEnum.java
--- gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java	7 Aug 2005 17:28:22 -0000	1.1
+++ gnu/testlet/org/omg/DynamicAny/DynAny/Iona/TestEnum.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) IONA Technologies, 2001.
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -75,4 +76,4 @@
   {
     return m_value;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/Test.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/Test.java,v
retrieving revision 1.1
diff -u -r1.1 Test.java
--- gnu/testlet/org/omg/PortableServer/POA/Test.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/Test.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestDSIRef_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestDSIRef_impl.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -189,4 +190,4 @@
   {
     return interfaces_;
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestDSI_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestDSI_impl.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -175,4 +176,4 @@
       return poa_;
     return super._default_POA();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForward.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForward.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardActivator_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardActivator_impl.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -90,4 +91,4 @@
                          )
   {
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardOperations.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardOperations.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -41,4 +42,4 @@
   extends TestOperations
 {
   void deactivate_servant();
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardServer.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServer.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -41,4 +42,4 @@
   extends TestLocationForwardServerOperations, org.omg.CORBA.Object,
           org.omg.CORBA.portable.IDLEntity
 {
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardServerMain.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerMain.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -203,4 +204,4 @@
 
     orb.destroy();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForwardServerOperations.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForwardServerOperations.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -44,4 +45,4 @@
   org.omg.CORBA.Object get_servant();
 
   void deactivate();
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java,v
retrieving revision 1.1
diff -u -r1.1 TestLocationForward_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestLocationForward_impl.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -97,4 +98,4 @@
   {
     delegate_.aMethod();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/TestOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestOperations.java,v
retrieving revision 1.1
diff -u -r1.1 TestOperations.java
--- gnu/testlet/org/omg/PortableServer/POA/TestOperations.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestOperations.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
Index: gnu/testlet/org/omg/PortableServer/POA/TestUtil.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/TestUtil.java,v
retrieving revision 1.1
diff -u -r1.1 TestUtil.java
--- gnu/testlet/org/omg/PortableServer/POA/TestUtil.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/TestUtil.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -102,4 +103,4 @@
 
     //return id1.equals(id2);
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POA/Test_impl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POA/Test_impl.java,v
retrieving revision 1.1
diff -u -r1.1 Test_impl.java
--- gnu/testlet/org/omg/PortableServer/POA/Test_impl.java	22 Jul 2005 17:29:11 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POA/Test_impl.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (c) Object Oriented Concepts, Inc. Billerica, MA, USA
 
 // Adapted for Mauve by Audrius Meskauskas <audriusa@bluewin.ch>
@@ -135,4 +136,4 @@
       return poa_;
     return super._default_POA();
   }
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java,v
retrieving revision 1.1
diff -u -r1.1 poa_comTester.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTester.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -25,4 +26,4 @@
   extends poa_comTesterOperations, org.omg.CORBA.Object,
           org.omg.CORBA.portable.IDLEntity
 {
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java,v
retrieving revision 1.1
diff -u -r1.1 poa_comTesterOperations.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/poa_comTesterOperations.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -51,4 +52,4 @@
    */
   void throwException(int parameter)
                throws ourUserException;
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java,v
retrieving revision 1.1
diff -u -r1.1 remotePoaControl.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControl.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -25,4 +26,4 @@
   extends remotePoaControlOperations, org.omg.CORBA.Object,
           org.omg.CORBA.portable.IDLEntity
 {
-}
\ No newline at end of file
+}
Index: gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java,v
retrieving revision 1.1
diff -u -r1.1 remotePoaControlOperations.java
--- gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java	22 Jul 2005 17:29:10 -0000	1.1
+++ gnu/testlet/org/omg/PortableServer/POAOperations/communication/remotePoaControlOperations.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2005 Audrius Meskauskas (AudriusA@Bioinformatics.org)
 
 // Mauve is free software; you can redistribute it and/or modify
@@ -40,4 +41,4 @@
    * Get the mode of POA being controlled.
    */
   int getPoaMode();
-}
\ No newline at end of file
+}
Index: gnu/testlet/runner/CheckResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/CheckResult.java,v
retrieving revision 1.1
diff -u -r1.1 CheckResult.java
--- gnu/testlet/runner/CheckResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/CheckResult.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/ClassResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/ClassResult.java,v
retrieving revision 1.1
diff -u -r1.1 ClassResult.java
--- gnu/testlet/runner/ClassResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/ClassResult.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/PackageResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/PackageResult.java,v
retrieving revision 1.1
diff -u -r1.1 PackageResult.java
--- gnu/testlet/runner/PackageResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/PackageResult.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/RunResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/RunResult.java,v
retrieving revision 1.1
diff -u -r1.1 RunResult.java
--- gnu/testlet/runner/RunResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/RunResult.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/Tags.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/Tags.java,v
retrieving revision 1.1
diff -u -r1.1 Tags.java
--- gnu/testlet/runner/Tags.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/Tags.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 /*
 Copyright (c) 2004, 2005 Thomas Zander <zander@kde.org>
 
Index: gnu/testlet/runner/TestResult.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/TestResult.java,v
retrieving revision 1.1
diff -u -r1.1 TestResult.java
--- gnu/testlet/runner/TestResult.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/TestResult.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 by Object Refinery Limited
 // Written by David Gilbert (david.gilbert@object-refinery.com)
 
Index: gnu/testlet/runner/XMLGenerator.java
===================================================================
RCS file: /cvs/mauve/mauve/gnu/testlet/runner/XMLGenerator.java,v
retrieving revision 1.1
diff -u -r1.1 XMLGenerator.java
--- gnu/testlet/runner/XMLGenerator.java	1 Jul 2005 18:33:43 -0000	1.1
+++ gnu/testlet/runner/XMLGenerator.java	26 Jun 2006 14:12:13 -0000
@@ -1,3 +1,4 @@
+// Tags: not-a-test
 // Copyright (C) 2004 Thomas Zander <zander@kde.org>
 
 // This file is part of Mauve.

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

* Re: RFC: add "not-a-test" tag to several tests
  2006-06-26 14:20 ` Anthony Balkissoon
@ 2006-06-26 14:40   ` Mark Wielaard
  2006-06-26 16:40     ` Thomas Fitzsimmons
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Wielaard @ 2006-06-26 14:40 UTC (permalink / raw)
  To: Anthony Balkissoon; +Cc: mauve-patches

[-- Attachment #1: Type: text/plain, Size: 819 bytes --]

Hi Tony,

On Mon, 2006-06-26 at 10:20 -0400, Anthony Balkissoon wrote:
> The RunnerProcess change will come later along with more changes to
> RunnerProcess.

I have a few local changes to RunnerProcess that I haven't cleanup up
yet, but that you might find handy. They make it possible to use
RunnerProcess just as you could use SimpleTestHarness (e.g. echo
gnu.testlet.some.test | runtime RunnerProcess) by just returning when
stdin is empty (and in.readLine() returns null). And it makes sure the
description of a test is always set to prevent null pointer exceptions
later on when a test isn't loaded correctly (and doesn't contain a Tag:
not-a-test). It also outputs a FAIL: line in such a case. If you could
take a look and/or incorporate those changes into your patches that
would be appreciated.

Cheers,

Mark

[-- Attachment #2: RunnerProcess.patch --]
[-- Type: text/x-patch, Size: 1626 bytes --]

Index: RunnerProcess.java
===================================================================
RCS file: /cvs/mauve/mauve/RunnerProcess.java,v
retrieving revision 1.8
diff -u -r1.8 RunnerProcess.java
--- RunnerProcess.java	19 Jun 2006 22:07:37 -0000	1.8
+++ RunnerProcess.java	26 Jun 2006 14:38:21 -0000
@@ -195,6 +195,8 @@
         try
         {
           testname = in.readLine();
+          if (testname == null)
+            return;
           if (testname.equals("_dump_data_"))
             {
               if (useEMMA)
@@ -238,6 +240,7 @@
     System.runFinalization();
 
     currentResult = new TestResult(name.substring(12));
+    description = name;
 
     checkPoint(null);
 
@@ -251,7 +254,6 @@
             description = NOT_A_TEST_DESCRIPTION;
             return;
           }
-
         t = (Testlet) o;
       }
     catch (Throwable ex)
@@ -282,12 +284,13 @@
         {          
         }
         
-        String d = "FAIL: " + stripPrefix(name)
-                   + "uncaught exception when loading";
+        String d = "FAIL: " + stripPrefix(name);
         currentResult.addException(ex, "failed loading class ",
                                    "couldn't load: " + name);
         if (verbose || exceptions)
-          d += ": " + ex.toString();
+          d += " (while loading): " + ex.toString();
+
+        System.out.println(d);
 
         if (exceptions)
           ex.printStackTrace(System.out);
@@ -303,7 +306,6 @@
     // If the harness started okay, now we run the test.
     if (t != null)
       {
-        description = name;
         try
           {
             if (verbose)

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

* Re: RFC: add "not-a-test" tag to several tests
  2006-06-26 14:40   ` Mark Wielaard
@ 2006-06-26 16:40     ` Thomas Fitzsimmons
  2006-06-26 16:49       ` Mark Wielaard
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Fitzsimmons @ 2006-06-26 16:40 UTC (permalink / raw)
  To: Mark Wielaard; +Cc: Anthony Balkissoon, mauve-patches

Mark Wielaard wrote:
> Hi Tony,
> 
> On Mon, 2006-06-26 at 10:20 -0400, Anthony Balkissoon wrote:
>> The RunnerProcess change will come later along with more changes to
>> RunnerProcess.
> 
> I have a few local changes to RunnerProcess that I haven't cleanup up
> yet, but that you might find handy. They make it possible to use
> RunnerProcess just as you could use SimpleTestHarness (e.g. echo
> gnu.testlet.some.test | runtime RunnerProcess) by just returning when
> stdin is empty (and in.readLine() returns null).

This can already be done using the current Harness:

jamvm Harness gnu.testlet.some.test

Harness also supports specifying multiple tests:

jamvm Harness gnu/testlet/java/awt/Frame/size1.java 
gnu/testlet/javax/swing/JTable/addColumn.java

I'd rather not introduce another way of specifying tests.

Tom

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

* Re: RFC: add "not-a-test" tag to several tests
  2006-06-26 16:40     ` Thomas Fitzsimmons
@ 2006-06-26 16:49       ` Mark Wielaard
  2006-06-27 16:05         ` Thomas Fitzsimmons
  0 siblings, 1 reply; 8+ messages in thread
From: Mark Wielaard @ 2006-06-26 16:49 UTC (permalink / raw)
  To: Thomas Fitzsimmons; +Cc: Anthony Balkissoon, mauve-patches

On Mon, 2006-06-26 at 12:40 -0400, Thomas Fitzsimmons wrote:
> Mark Wielaard wrote:
> > They make it possible to use
> > RunnerProcess just as you could use SimpleTestHarness (e.g. echo
> > gnu.testlet.some.test | runtime RunnerProcess) by just returning when
> > stdin is empty (and in.readLine() returns null).
> 
> This can already be done using the current Harness:
> 
> jamvm Harness gnu.testlet.some.test
> 
> Harness also supports specifying multiple tests:
> 
> jamvm Harness gnu/testlet/java/awt/Frame/size1.java 
> gnu/testlet/javax/swing/JTable/addColumn.java

I know, but that is a terrible way for debugging. Hunting down a crasher
bug for example is really, really awkward using the Harness since it
does way too many things. When examining tests (especially under gdb)
for debugging you need to be able to run them just through the
RunnerProcess to make sure you are looking at just the thing that fails.
It works nicely with that one-liner patch though, so it isn't really
another way to run tests, it is just to make sure you can run the tests
by hand as if the Harness would run them.

Cheers,

Mark

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

* Re: RFC: add "not-a-test" tag to several tests
  2006-06-26 16:49       ` Mark Wielaard
@ 2006-06-27 16:05         ` Thomas Fitzsimmons
  2006-06-27 16:38           ` Mark Wielaard
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Fitzsimmons @ 2006-06-27 16:05 UTC (permalink / raw)
  To: Mark Wielaard; +Cc: Anthony Balkissoon, mauve-patches

Mark Wielaard wrote:
> On Mon, 2006-06-26 at 12:40 -0400, Thomas Fitzsimmons wrote:
>> Mark Wielaard wrote:
>>> They make it possible to use
>>> RunnerProcess just as you could use SimpleTestHarness (e.g. echo
>>> gnu.testlet.some.test | runtime RunnerProcess) by just returning when
>>> stdin is empty (and in.readLine() returns null).
>> This can already be done using the current Harness:
>>
>> jamvm Harness gnu.testlet.some.test
>>
>> Harness also supports specifying multiple tests:
>>
>> jamvm Harness gnu/testlet/java/awt/Frame/size1.java 
>> gnu/testlet/javax/swing/JTable/addColumn.java
> 
> I know, but that is a terrible way for debugging. Hunting down a crasher
> bug for example is really, really awkward using the Harness since it
> does way too many things. When examining tests (especially under gdb)
> for debugging you need to be able to run them just through the
> RunnerProcess to make sure you are looking at just the thing that fails.
> It works nicely with that one-liner patch though, so it isn't really
> another way to run tests, it is just to make sure you can run the tests
> by hand as if the Harness would run them.

Why don't we just print the VM command-line invocation as part of Harness's 
output?  Then you could simply copy-n-paste that to gdb --args.

Tom

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

* Re: RFC: add "not-a-test" tag to several tests
  2006-06-27 16:05         ` Thomas Fitzsimmons
@ 2006-06-27 16:38           ` Mark Wielaard
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Wielaard @ 2006-06-27 16:38 UTC (permalink / raw)
  To: Thomas Fitzsimmons; +Cc: Anthony Balkissoon, mauve-patches

Hi,

On Tue, 2006-06-27 at 12:05 -0400, Thomas Fitzsimmons wrote:
> > I know, but that is a terrible way for debugging. Hunting down a crasher
> > bug for example is really, really awkward using the Harness since it
> > does way too many things. When examining tests (especially under gdb)
> > for debugging you need to be able to run them just through the
> > RunnerProcess to make sure you are looking at just the thing that fails.
> > It works nicely with that one-liner patch though, so it isn't really
> > another way to run tests, it is just to make sure you can run the tests
> > by hand as if the Harness would run them.
> 
> Why don't we just print the VM command-line invocation as part of Harness's 
> output?  Then you could simply copy-n-paste that to gdb --args.

Sure as long as what gets invoked is really just the testcase and
nothing else. We use Mauve for low level tests of both the core library
and the runtimes so we really don't want too much things like Sockets or
fancy reflection constructs in the TestRunner itself.

Cheers,

Mark

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

end of thread, other threads:[~2006-06-27 16:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-23 16:31 RFC: add "not-a-test" tag to several tests Anthony Balkissoon
2006-06-23 17:42 ` Tom Tromey
2006-06-26 14:20 ` Anthony Balkissoon
2006-06-26 14:40   ` Mark Wielaard
2006-06-26 16:40     ` Thomas Fitzsimmons
2006-06-26 16:49       ` Mark Wielaard
2006-06-27 16:05         ` Thomas Fitzsimmons
2006-06-27 16:38           ` Mark Wielaard

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).