This is the mail archive of the mauve-patches@sourceware.org mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RFC: add "not-a-test" tag to several tests


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]