summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceUtil/thread')
-rw-r--r--cpp/test/IceUtil/thread/AliveTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/AliveTest.h10
-rw-r--r--cpp/test/IceUtil/thread/Client.cpp10
-rw-r--r--cpp/test/IceUtil/thread/CountDownLatchTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/CountDownLatchTest.h10
-rw-r--r--cpp/test/IceUtil/thread/CreateTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/CreateTest.h10
-rw-r--r--cpp/test/IceUtil/thread/Makefile10
-rw-r--r--cpp/test/IceUtil/thread/MonitorMutexTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/MonitorMutexTest.h10
-rw-r--r--cpp/test/IceUtil/thread/MonitorRecMutexTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/MonitorRecMutexTest.h10
-rw-r--r--cpp/test/IceUtil/thread/MutexTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/MutexTest.h10
-rw-r--r--cpp/test/IceUtil/thread/RWRecMutexTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/RWRecMutexTest.h10
-rw-r--r--cpp/test/IceUtil/thread/RecMutexTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/RecMutexTest.h10
-rw-r--r--cpp/test/IceUtil/thread/StartTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/StartTest.h10
-rw-r--r--cpp/test/IceUtil/thread/StaticMutexTest.cpp10
-rw-r--r--cpp/test/IceUtil/thread/StaticMutexTest.h10
-rw-r--r--cpp/test/IceUtil/thread/TestBase.cpp10
-rw-r--r--cpp/test/IceUtil/thread/TestBase.h10
-rw-r--r--cpp/test/IceUtil/thread/TestSuite.cpp10
-rw-r--r--cpp/test/IceUtil/thread/TestSuite.h10
-rwxr-xr-xcpp/test/IceUtil/thread/run.py10
27 files changed, 135 insertions, 135 deletions
diff --git a/cpp/test/IceUtil/thread/AliveTest.cpp b/cpp/test/IceUtil/thread/AliveTest.cpp
index 4a7667dc496..69c70cb02f7 100644
--- a/cpp/test/IceUtil/thread/AliveTest.cpp
+++ b/cpp/test/IceUtil/thread/AliveTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <AliveTest.h>
#include <TestCommon.h>
diff --git a/cpp/test/IceUtil/thread/AliveTest.h b/cpp/test/IceUtil/thread/AliveTest.h
index 1239c917cfd..5dccc703664 100644
--- a/cpp/test/IceUtil/thread/AliveTest.h
+++ b/cpp/test/IceUtil/thread/AliveTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef ALIVE_TEST_H
#define ALIVE_TEST_H
diff --git a/cpp/test/IceUtil/thread/Client.cpp b/cpp/test/IceUtil/thread/Client.cpp
index 50468fbcac4..44583d91650 100644
--- a/cpp/test/IceUtil/thread/Client.cpp
+++ b/cpp/test/IceUtil/thread/Client.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <stdlib.h>
diff --git a/cpp/test/IceUtil/thread/CountDownLatchTest.cpp b/cpp/test/IceUtil/thread/CountDownLatchTest.cpp
index 4351f6140d7..c042a6fa05e 100644
--- a/cpp/test/IceUtil/thread/CountDownLatchTest.cpp
+++ b/cpp/test/IceUtil/thread/CountDownLatchTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2004
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <CountDownLatchTest.h>
diff --git a/cpp/test/IceUtil/thread/CountDownLatchTest.h b/cpp/test/IceUtil/thread/CountDownLatchTest.h
index 27f1f0a2f29..d035e593605 100644
--- a/cpp/test/IceUtil/thread/CountDownLatchTest.h
+++ b/cpp/test/IceUtil/thread/CountDownLatchTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef COUNT_DOWN_LATCH_TEST_H
#define COUNT_DOWN_LATCH_TEST_H
diff --git a/cpp/test/IceUtil/thread/CreateTest.cpp b/cpp/test/IceUtil/thread/CreateTest.cpp
index f7ac4f5c965..45b2ff2a827 100644
--- a/cpp/test/IceUtil/thread/CreateTest.cpp
+++ b/cpp/test/IceUtil/thread/CreateTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <stdio.h>
diff --git a/cpp/test/IceUtil/thread/CreateTest.h b/cpp/test/IceUtil/thread/CreateTest.h
index ae7a08eeb66..c27c69ca430 100644
--- a/cpp/test/IceUtil/thread/CreateTest.h
+++ b/cpp/test/IceUtil/thread/CreateTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef CREATE_TEST_H
#define CREATE_TEST_H
diff --git a/cpp/test/IceUtil/thread/Makefile b/cpp/test/IceUtil/thread/Makefile
index e9d679a5a7e..ce2a7f2717a 100644
--- a/cpp/test/IceUtil/thread/Makefile
+++ b/cpp/test/IceUtil/thread/Makefile
@@ -1,17 +1,17 @@
# **********************************************************************
#
-# Copyright (c) 2003
+# Copyright (c) 2003 - 2004
# ZeroC, Inc.
-# Billerica, MA, USA
+# North Palm Beach, FL, USA
#
# All Rights Reserved.
#
-# Ice is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License version 2 as published by
-# the Free Software Foundation.
+# This copy of Ice is licensed to you under the terms described in the
+# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
+
top_srcdir = ../../..
CLIENT = client
diff --git a/cpp/test/IceUtil/thread/MonitorMutexTest.cpp b/cpp/test/IceUtil/thread/MonitorMutexTest.cpp
index 9e8c6a660ef..ba4b06fdefd 100644
--- a/cpp/test/IceUtil/thread/MonitorMutexTest.cpp
+++ b/cpp/test/IceUtil/thread/MonitorMutexTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <MonitorMutexTest.h>
diff --git a/cpp/test/IceUtil/thread/MonitorMutexTest.h b/cpp/test/IceUtil/thread/MonitorMutexTest.h
index c7d850dfcc7..763715c8425 100644
--- a/cpp/test/IceUtil/thread/MonitorMutexTest.h
+++ b/cpp/test/IceUtil/thread/MonitorMutexTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef MONITOR_MUTEX_TEST_H
#define MONITOR_MUTEX_TEST_H
diff --git a/cpp/test/IceUtil/thread/MonitorRecMutexTest.cpp b/cpp/test/IceUtil/thread/MonitorRecMutexTest.cpp
index a437a568ba5..6eb404d548b 100644
--- a/cpp/test/IceUtil/thread/MonitorRecMutexTest.cpp
+++ b/cpp/test/IceUtil/thread/MonitorRecMutexTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <MonitorRecMutexTest.h>
diff --git a/cpp/test/IceUtil/thread/MonitorRecMutexTest.h b/cpp/test/IceUtil/thread/MonitorRecMutexTest.h
index e5cc7d5ebda..1d86d92d476 100644
--- a/cpp/test/IceUtil/thread/MonitorRecMutexTest.h
+++ b/cpp/test/IceUtil/thread/MonitorRecMutexTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef MONITOR_REC_MUTEX_TEST_H
#define MONITOR_REC_MUTEX_TEST_H
diff --git a/cpp/test/IceUtil/thread/MutexTest.cpp b/cpp/test/IceUtil/thread/MutexTest.cpp
index fa3d1ecd36c..6ae2d136480 100644
--- a/cpp/test/IceUtil/thread/MutexTest.cpp
+++ b/cpp/test/IceUtil/thread/MutexTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <MutexTest.h>
diff --git a/cpp/test/IceUtil/thread/MutexTest.h b/cpp/test/IceUtil/thread/MutexTest.h
index 19238b4607a..8d4447a1a3f 100644
--- a/cpp/test/IceUtil/thread/MutexTest.h
+++ b/cpp/test/IceUtil/thread/MutexTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef MUTEX_TEST_H
#define MUTEX_TEST_H
diff --git a/cpp/test/IceUtil/thread/RWRecMutexTest.cpp b/cpp/test/IceUtil/thread/RWRecMutexTest.cpp
index 48b1edb23a2..d225861eacb 100644
--- a/cpp/test/IceUtil/thread/RWRecMutexTest.cpp
+++ b/cpp/test/IceUtil/thread/RWRecMutexTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <RWRecMutexTest.h>
diff --git a/cpp/test/IceUtil/thread/RWRecMutexTest.h b/cpp/test/IceUtil/thread/RWRecMutexTest.h
index a3a7b4a271d..40a81a9707d 100644
--- a/cpp/test/IceUtil/thread/RWRecMutexTest.h
+++ b/cpp/test/IceUtil/thread/RWRecMutexTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef RW_REC_MUTEX_TEST_H
#define RE_REC_MUTEX_TEST_H
diff --git a/cpp/test/IceUtil/thread/RecMutexTest.cpp b/cpp/test/IceUtil/thread/RecMutexTest.cpp
index 44673fab719..ea9a887fda0 100644
--- a/cpp/test/IceUtil/thread/RecMutexTest.cpp
+++ b/cpp/test/IceUtil/thread/RecMutexTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <RecMutexTest.h>
diff --git a/cpp/test/IceUtil/thread/RecMutexTest.h b/cpp/test/IceUtil/thread/RecMutexTest.h
index cd149949dda..353df8d40a6 100644
--- a/cpp/test/IceUtil/thread/RecMutexTest.h
+++ b/cpp/test/IceUtil/thread/RecMutexTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef REC_MUTEX_TEST_H
#define REC_MUTEX_TEST_H
diff --git a/cpp/test/IceUtil/thread/StartTest.cpp b/cpp/test/IceUtil/thread/StartTest.cpp
index 791ffba4b27..4774fdaffb3 100644
--- a/cpp/test/IceUtil/thread/StartTest.cpp
+++ b/cpp/test/IceUtil/thread/StartTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <stdio.h>
diff --git a/cpp/test/IceUtil/thread/StartTest.h b/cpp/test/IceUtil/thread/StartTest.h
index bf9f13602f5..5e91df42136 100644
--- a/cpp/test/IceUtil/thread/StartTest.h
+++ b/cpp/test/IceUtil/thread/StartTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef START_TEST_H
#define START_TEST_H
diff --git a/cpp/test/IceUtil/thread/StaticMutexTest.cpp b/cpp/test/IceUtil/thread/StaticMutexTest.cpp
index 34635a35ead..0c37a7cefb5 100644
--- a/cpp/test/IceUtil/thread/StaticMutexTest.cpp
+++ b/cpp/test/IceUtil/thread/StaticMutexTest.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <StaticMutexTest.h>
diff --git a/cpp/test/IceUtil/thread/StaticMutexTest.h b/cpp/test/IceUtil/thread/StaticMutexTest.h
index 19321512b16..2b0e54a1389 100644
--- a/cpp/test/IceUtil/thread/StaticMutexTest.h
+++ b/cpp/test/IceUtil/thread/StaticMutexTest.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef STATIC_MUTEX_TEST_H
#define STATIC_MUTEX_TEST_H
diff --git a/cpp/test/IceUtil/thread/TestBase.cpp b/cpp/test/IceUtil/thread/TestBase.cpp
index 83093580b3d..3e7da6a7e55 100644
--- a/cpp/test/IceUtil/thread/TestBase.cpp
+++ b/cpp/test/IceUtil/thread/TestBase.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <IceUtil/IceUtil.h>
#include <TestBase.h>
diff --git a/cpp/test/IceUtil/thread/TestBase.h b/cpp/test/IceUtil/thread/TestBase.h
index e7b840eff3f..26c2d2dd924 100644
--- a/cpp/test/IceUtil/thread/TestBase.h
+++ b/cpp/test/IceUtil/thread/TestBase.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef TEST_BASE_H
#define TEST_BASE_H
diff --git a/cpp/test/IceUtil/thread/TestSuite.cpp b/cpp/test/IceUtil/thread/TestSuite.cpp
index e261f6dccc0..c933840624a 100644
--- a/cpp/test/IceUtil/thread/TestSuite.cpp
+++ b/cpp/test/IceUtil/thread/TestSuite.cpp
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#include <TestSuite.h>
#include <CountDownLatchTest.h>
#include <MutexTest.h>
diff --git a/cpp/test/IceUtil/thread/TestSuite.h b/cpp/test/IceUtil/thread/TestSuite.h
index b0ab3e1c229..429b02479d7 100644
--- a/cpp/test/IceUtil/thread/TestSuite.h
+++ b/cpp/test/IceUtil/thread/TestSuite.h
@@ -1,17 +1,17 @@
// **********************************************************************
//
-// Copyright (c) 2003
+// Copyright (c) 2003 - 2004
// ZeroC, Inc.
-// Billerica, MA, USA
+// North Palm Beach, FL, USA
//
// All Rights Reserved.
//
-// Ice is free software; you can redistribute it and/or modify it under
-// the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation.
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
+
#ifndef TEST_SUITE_H
#define TEST_SUITE_H
diff --git a/cpp/test/IceUtil/thread/run.py b/cpp/test/IceUtil/thread/run.py
index 876a014b6a5..711fe3912fe 100755
--- a/cpp/test/IceUtil/thread/run.py
+++ b/cpp/test/IceUtil/thread/run.py
@@ -1,18 +1,18 @@
#!/usr/bin/env python
# **********************************************************************
#
-# Copyright (c) 2003
+# Copyright (c) 2003 - 2004
# ZeroC, Inc.
-# Billerica, MA, USA
+# North Palm Beach, FL, USA
#
# All Rights Reserved.
#
-# Ice is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License version 2 as published by
-# the Free Software Foundation.
+# This copy of Ice is licensed to you under the terms described in the
+# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
+
import os, sys
for toplevel in [".", "..", "../..", "../../..", "../../../.."]: