Started copyright update

X-SVN-Rev: 912
This commit is contained in:
John Fitzpatrick 2000-03-07 22:09:03 +00:00
parent c676f9996c
commit a8a0fd260a
10 changed files with 35 additions and 17 deletions

View file

@ -1,5 +1,7 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
#
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.2 $ $Date: 2000/02/26 21:55:43 $
# @(#)$RCSfile: GNUmakefile,v $ $Revision: 1.3 $ $Date: 2000/03/07 22:09:02 $
#
TOPDIR=..

View file

@ -1,3 +1,5 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
ifndef ENABLE_IMPLICITS
%: %.o
%: %.C

View file

@ -1,3 +1,5 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
CLASSDIR= $(TOPDIR)/classes
SRCDIR= $(TOPDIR)/src
DOCDIR= $(TOPDIR)/docs

View file

@ -1,3 +1,5 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
CLASSDIR= $(TOPDIR)/classes
SRCDIR= $(TOPDIR)/src
DOCDIR= $(TOPDIR)/docs

View file

@ -1,3 +1,5 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
default: classes
include $(TOPDIR)/src/build/CancelImplicits.gmk

View file

@ -1,3 +1,5 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
default: classes
JAVAC= javac -classpath $(CLASSPATH) -sourcepath $(SRCDIR) -d $(CLASSDIR) $(JAVACFLAGS)

View file

@ -1,5 +1,5 @@
/*
* $RCSfile: TestFmwk.java,v $ $Revision: 1.5 $ $Date: 2000/02/25 23:57:10 $
* $RCSfile: TestFmwk.java,v $ $Revision: 1.6 $ $Date: 2000/03/07 22:09:03 $
*
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
@ -82,10 +82,6 @@ public class TestFmwk {
}
}
public void setParent(TestFmwk parent) {
params = parent.params;
}
public void run(String[] args) throws Exception {
if (params == null) params = new TestParams();
// Parse the test arguments. They can be either the flag
@ -157,6 +153,15 @@ public class TestFmwk {
}
}
protected void run(TestFmwk childTest) throws Exception {
test.setParent(this);
test.run(new String[0]);
}
private void setParent(TestFmwk parent) {
params = parent.params;
}
/**
* Adds given string to the log if we are in verbose mode.
*/

View file

@ -1,5 +1,5 @@
/*
* $RCSfile: TestFmwk.java,v $ $Revision: 1.5 $ $Date: 2000/02/25 23:57:10 $
* $RCSfile: TestFmwk.java,v $ $Revision: 1.6 $ $Date: 2000/03/07 22:09:03 $
*
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
@ -82,10 +82,6 @@ public class TestFmwk {
}
}
public void setParent(TestFmwk parent) {
params = parent.params;
}
public void run(String[] args) throws Exception {
if (params == null) params = new TestParams();
// Parse the test arguments. They can be either the flag
@ -157,6 +153,15 @@ public class TestFmwk {
}
}
protected void run(TestFmwk childTest) throws Exception {
test.setParent(this);
test.run(new String[0]);
}
private void setParent(TestFmwk parent) {
params = parent.params;
}
/**
* Adds given string to the log if we are in verbose mode.
*/

View file

@ -61,9 +61,4 @@ public class TestAll extends TestFmwk {
public void TestSearch() throws Exception {
run(new com.ibm.test.search.SearchTest());
}
private void run(TestFmwk test) throws Exception {
test.setParent(this);
test.run(new String[0]);
}
}

View file

@ -1,5 +1,6 @@
# Copyright © 1999-2000, International Business Machines Corporation and others. All Rights Reserved
#
# @(#)$RCSfile: makefile,v $ $Revision: 1.8 $ $Date: 2000/02/26 21:55:44 $
# @(#)$RCSfile: makefile,v $ $Revision: 1.9 $ $Date: 2000/03/07 22:09:02 $
#
TOPDIR= ..