From 986215d1ac52aed4c95090c7a18cd7f4736c726a Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Tue, 29 May 2012 00:16:30 -0400 Subject: [PATCH] Add missing copyright notices to files. This makes it easier to cut-and-paste any given wvtest file into your own project without losing the license info. --- c/wvtest.c | 3 ++- c/wvtest.h | 5 +++-- c/wvtestmain.c | 3 ++- cpp/wvtest.cc | 3 ++- cpp/wvtest.h | 3 ++- cpp/wvtestmain.cc | 3 ++- dotnet/wvtest.cs | 3 ++- dotnet/wvtestmain.cs | 5 +++-- python/wvtest.py | 7 +++++++ sh/wvtest.sh | 6 ++++++ wvtestrun | 3 ++- 11 files changed, 33 insertions(+), 11 deletions(-) diff --git a/c/wvtest.c b/c/wvtest.c index ffeb6e7..685efed 100644 --- a/c/wvtest.c +++ b/c/wvtest.c @@ -1,8 +1,9 @@ /* * WvTest: - * Copyright (C) 1997-2009 Net Integration Technologies, Inc. + * Copyright (C)1997-2012 Net Integration Technologies and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ #include "wvtest.h" #include diff --git a/c/wvtest.h b/c/wvtest.h index 71b33f6..0952c00 100644 --- a/c/wvtest.h +++ b/c/wvtest.h @@ -1,8 +1,9 @@ -/* -*- Mode: C -*- +/* -*- Mode: C++ -*- * WvTest: - * Copyright (C) 1997-2009 Net Integration Technologies, Inc. + * Copyright (C)1997-2012 Net Integration Technologies and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ #ifndef __WVTEST_H #define __WVTEST_H diff --git a/c/wvtestmain.c b/c/wvtestmain.c index d9889cf..f6d59ac 100644 --- a/c/wvtestmain.c +++ b/c/wvtestmain.c @@ -1,8 +1,9 @@ /* * WvTest: - * Copyright (C) 1997-2009 Net Integration Technologies, Inc. + * Copyright (C)1997-2012 Net Integration Technologies and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ #include "wvtest.h" #ifdef HAVE_WVCRASH diff --git a/cpp/wvtest.cc b/cpp/wvtest.cc index 3cc8eaa..3859d1a 100644 --- a/cpp/wvtest.cc +++ b/cpp/wvtest.cc @@ -1,8 +1,9 @@ /* * WvTest: - * Copyright (C) 1997-2009 Net Integration Technologies, Inc. + * Copyright (C)1997-2012 Net Integration Technologies and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ #include "wvtest.h" #include diff --git a/cpp/wvtest.h b/cpp/wvtest.h index 4c729ea..de4975b 100644 --- a/cpp/wvtest.h +++ b/cpp/wvtest.h @@ -1,8 +1,9 @@ /* -*- Mode: C++ -*- * WvTest: - * Copyright (C) 1997-2009 Net Integration Technologies, Inc. + * Copyright (C)1997-2012 Net Integration Technologies and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ #ifndef __WVTEST_H #define __WVTEST_H diff --git a/cpp/wvtestmain.cc b/cpp/wvtestmain.cc index ae68ac0..47222ed 100644 --- a/cpp/wvtestmain.cc +++ b/cpp/wvtestmain.cc @@ -1,8 +1,9 @@ /* * WvTest: - * Copyright (C) 1997-2009 Net Integration Technologies, Inc. + * Copyright (C)1997-2012 Net Integration Technologies and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ #include "wvtest.h" #ifdef HAVE_WVCRASH diff --git a/dotnet/wvtest.cs b/dotnet/wvtest.cs index fe5fade..78fae3a 100644 --- a/dotnet/wvtest.cs +++ b/dotnet/wvtest.cs @@ -1,8 +1,9 @@ /* * WvTest: - * Copyright (C)2007-2009 Versabanq Innovations Inc. and contributors. + * Copyright (C)2007-2012 Versabanq Innovations Inc. and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ using System; using System.Collections.Generic; diff --git a/dotnet/wvtestmain.cs b/dotnet/wvtestmain.cs index c470f57..9eae04d 100644 --- a/dotnet/wvtestmain.cs +++ b/dotnet/wvtestmain.cs @@ -1,8 +1,9 @@ /* - * Versaplex: - * Copyright (C)2007-2009 Versabanq Innovations Inc. and contributors. + * WvTest: + * Copyright (C)2007-2012 Versabanq Innovations Inc. and contributors. * Licensed under the GNU Library General Public License, version 2. * See the included file named LICENSE for license information. + * You can get wvtest from: http://github.com/apenwarr/wvtest */ using System; using Wv.Test; diff --git a/python/wvtest.py b/python/wvtest.py index 86c37a3..d424c55 100755 --- a/python/wvtest.py +++ b/python/wvtest.py @@ -1,4 +1,11 @@ #!/usr/bin/env python +# +# WvTest: +# Copyright (C)2007-2012 Versabanq Innovations Inc. and contributors. +# Licensed under the GNU Library General Public License, version 2. +# See the included file named LICENSE for license information. +# You can get wvtest from: http://github.com/apenwarr/wvtest +# import traceback import os import re diff --git a/sh/wvtest.sh b/sh/wvtest.sh index 0cfc6b2..47b4366 100644 --- a/sh/wvtest.sh +++ b/sh/wvtest.sh @@ -1,4 +1,10 @@ # +# WvTest: +# Copyright (C)2007-2012 Versabanq Innovations Inc. and contributors. +# Licensed under the GNU Library General Public License, version 2. +# See the included file named LICENSE for license information. +# You can get wvtest from: http://github.com/apenwarr/wvtest +# # Include this file in your shell script by using: # #!/bin/sh # . ./wvtest.sh diff --git a/wvtestrun b/wvtestrun index f4ce482..897b95f 100755 --- a/wvtestrun +++ b/wvtestrun @@ -1,9 +1,10 @@ #!/usr/bin/perl -w # # WvTest: -# Copyright (C)2007-2009 Versabanq Innovations Inc. and contributors. +# Copyright (C)2007-2012 Versabanq Innovations Inc. and contributors. # Licensed under the GNU Library General Public License, version 2. # See the included file named LICENSE for license information. +# You can get wvtest from: http://github.com/apenwarr/wvtest # use strict; use Time::HiRes qw(time); -- 2.39.2