]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
remove some old and obsolete test files
authorEvan Hunt <each@isc.org>
Tue, 27 Feb 2018 06:19:38 +0000 (22:19 -0800)
committerEvan Hunt <each@isc.org>
Sat, 10 Mar 2018 02:28:16 +0000 (18:28 -0800)
(cherry picked from commit a633f6c5dd0dedca3c2530144b9dae84f9fa6969)
(cherry picked from commit 10efb4ff07d7291efc2ca1d50e4410b8cad20124)
(cherry picked from commit 22d9a69b3fac20368b70dc7b6e592ad131f920b0)

bin/tests/b8t.mk [deleted file]
bin/tests/b9t.mk [deleted file]
bin/tests/resolv.conf.sample [deleted file]
util/copyrights

diff --git a/bin/tests/b8t.mk b/bin/tests/b8t.mk
deleted file mode 100644 (file)
index 6d41896..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright (C) 2004, 2007, 2012  Internet Systems Consortium, Inc. ("ISC")
-# Copyright (C) 1999-2001  Internet Software Consortium.
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
-# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
-# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
-# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THIS SOFTWARE.
-
-# $Id: b8t.mk,v 1.11 2007/06/19 23:46:59 tbox Exp $
-
-#
-# bind 8 multi-host make
-# PLATFORM set in the environment by cron
-#
-
-MODULE = bind
-BASE   = /build
-BDIR   = $(BASE)/$(MODULE)
-RDIR   = /proj/build-reports/bind8/hosts/$(PLATFORM)
-SDIR   = $(HOME)/b8t/src
-CVSROOT        = /proj/cvs/isc
-
-all:   clobber populate config build
-
-clobber:
-       @echo "CLOBBBER `date`"
-       @if test ! -d $(BASE) ; then mkdir -p $(BASE) ; fi
-       @rm -fr $(BDIR)
-       @echo "DONE `date`"
-
-populate:
-       @echo "POPULATE `date`"
-       @( cd $(BASE) && tar -xvf $(SDIR)/$(MODULE).tar ) > $(RDIR)/.populate 2>&1
-       @echo "DONE `date`"
-
-tarsrc:
-       @echo "TARSRC `date`"
-       @rm -fr $(SDIR)/$(MODULE)
-       @( cd $(SDIR) && cvs -d $(CVSROOT) checkout $(MODULE) )
-       @( cd $(SDIR) && tar -cvf $(MODULE).tar $(MODULE) )
-       @echo "DONE `date`"
-
-config:
-       @echo "CONFIG `date`"
-       @( cd $(BDIR)/src && make SRC=$(BDIR)/src DST=$(BDIR)/dst links ) > $(RDIR)/.config 2>&1
-       @echo "DONE `date`"
-
-build:
-       @echo "BUILD `date`"
-       @( cd $(BDIR)/dst && make -k clean depend all ) > $(RDIR)/.build 2>&1
-       @echo "DONE `date`"
-
-test:
-       @echo "TEST `date`"
-       @touch $(RDIR)/.test
-       @echo "DONE `date`"
diff --git a/bin/tests/b9t.mk b/bin/tests/b9t.mk
deleted file mode 100644 (file)
index cb6f837..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright (C) 2004, 2007, 2012  Internet Systems Consortium, Inc. ("ISC")
-# Copyright (C) 1999-2001  Internet Software Consortium.
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
-# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
-# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
-# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THIS SOFTWARE.
-
-# $Id: b9t.mk,v 1.13 2007/06/19 23:46:59 tbox Exp $
-
-#
-# makefile to configure, build and test bind9
-# this is run by cron (user wpk) on aa, sol, irix, hp and aix
-# $PLATFORM is set in the environment by cron
-#
-
-BASE   = /build
-BDIR   = $(BASE)
-MODULE = bind9
-SDIR   = $(HOME)/b9t/src
-
-# as it says
-CVSROOT        = /proj/cvs/isc
-
-# where the config, build and test output goes
-RDIR   = /proj/build-reports/$(MODULE)/hosts/$(PLATFORM)
-
-all:   clobber populate config build test
-
-clobber:
-       @echo "CLOBBBER `date`"
-       @if test ! -d $(BDIR) ; then mkdir -p $(BDIR) > /dev/null 2>&1 ; fi
-       @( cd $(BDIR) && rm -fr $(MODULE) )
-       @echo "DONE `date`"
-
-populate:
-       @echo "POPULATE `date`"
-       @( cd $(BDIR) && tar -xvf $(SDIR)/$(MODULE).tar ) > $(RDIR)/.populate 2>&1
-       @echo "DONE `date`"
-
-config:
-       @echo "CONFIG `date`"
-       @( cd $(BDIR)/$(MODULE) && ./configure ) > $(RDIR)/.config 2>&1
-       @echo "DONE `date`"
-
-build:
-       @echo "BUILD `date`"
-       @( cd $(BDIR)/$(MODULE) && $(MAKE) -k all ) > $(RDIR)/.build 2>&1
-       @echo "DONE `date`"
-
-test:
-       @echo "TEST `date`"
-       -@( cd $(BDIR)/$(MODULE)/bin/tests && $(MAKE) test ) > $(RDIR)/.test 2>&1
-       @echo "DONE `date`"
-
-tarsrc:
-       @echo "TARSRC `date`"
-       @rm -fr $(SDIR)/$(MODULE)
-       @( cd $(SDIR) && cvs -d $(CVSROOT) checkout $(MODULE) && tar -cvf $(MODULE).tar $(MODULE) )
-       @echo "DONE `date`"
-
diff --git a/bin/tests/resolv.conf.sample b/bin/tests/resolv.conf.sample
deleted file mode 100644 (file)
index 2d3cea5..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (C) 2004, 2007, 2012  Internet Systems Consortium, Inc. ("ISC")
-# Copyright (C) 2000, 2001  Internet Software Consortium.
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
-# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
-# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
-# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-# PERFORMANCE OF THIS SOFTWARE.
-
-# $Id: resolv.conf.sample,v 1.11 2007/06/19 23:46:59 tbox Exp $
-
-domain  jab.fr
-nameserver 194.150.1.2     ; ignore that
-
-; ignore this comment
-
-nameserver 194.150.1.1  # ignore this comment too
-
-a-bad-entry-that-will be ignored
-
-option debug ; foo
-option ndots:10
-
-sortlist 10.0.0.0/255.244.33.0 11.0.0.0
-
-search aaa bbb ccc ddd ; blank stuff
-# search eee fff ggg hhh
-
-#
-# Bar
-### bar bar bar
-#
index d5e1c118b9ba3bf302dbbec2b7fa818c4b1a9efb..6da08db110bc2c882124ab206a16ca97e7a4ea6e 100644 (file)
 ./bin/tests/atomic/win32/t_atomic.vcxproj.filters.in   X       2013,2015
 ./bin/tests/atomic/win32/t_atomic.vcxproj.in   X       2013,2015,2016,2017
 ./bin/tests/atomic/win32/t_atomic.vcxproj.user X       2013
-./bin/tests/b8t.mk                             MAKE    1999,2000,2001,2004,2007,2012
-./bin/tests/b9t.mk                             MAKE    1999,2000,2001,2004,2007,2012
 ./bin/tests/backtrace_test.c                   C       2009,2013,2015
 ./bin/tests/bigtest/README                     TXT.BRIEF       2013
 ./bin/tests/bigtest/buildzones.sh              SH      2013
 ./bin/tests/rbt_test.c                         C       1999,2000,2001,2004,2005,2007,2009,2011,2012,2014,2015,2018
 ./bin/tests/rbt_test.out                       X       1999,2000,2001
 ./bin/tests/rbt_test.txt                       SH      1999,2000,2001,2004,2007,2012
-./bin/tests/resolv.conf.sample                 CONF-SH 2000,2001,2004,2007,2012
 ./bin/tests/resolver/Makefile.in               MAKE    2011,2012,2014,2016
 ./bin/tests/resolver/t_resolver.c              C       2011,2012,2013,2014
 ./bin/tests/resolver/win32/t_resolver.dsp.in   X       2013,2016