summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje+keyword+gnu.7caf74@air.net.au>1999-11-09 13:17:28 +0000
committerBen Elliston <bje+keyword+gnu.7caf74@air.net.au>1999-11-09 13:17:28 +0000
commit282632967890937920e7ed2de287dd82015310a5 (patch)
tree9168f9a7b1f46da6f7913fc04f8a9bb2a1fe755d
parent50fde11fa12d9035a49fa8771a7098eeeed986d7 (diff)
downloadautoconf-2-15-branch.tar.gz
1999-11-10 Ben Elliston <bje@cygnus.com>autoconf-2-15-branch
* testsuite/autoconf.s/defines.exp: Remove test case.
-rw-r--r--ChangeLog4
-rw-r--r--testsuite/autoconf.s/defines.exp49
2 files changed, 4 insertions, 49 deletions
diff --git a/ChangeLog b/ChangeLog
index dbd4e301..656b0986 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-11-10 Ben Elliston <bje@cygnus.com>
+
+ * testsuite/autoconf.s/defines.exp: Remove test case.
+
1999-11-09 Akim Demaille <akim@epita.fr>
* acgeneral.m4 (AC_INIT_PARSE_ARGS): Avoid using double quotes
diff --git a/testsuite/autoconf.s/defines.exp b/testsuite/autoconf.s/defines.exp
deleted file mode 100644
index 3d0eab7c..00000000
--- a/testsuite/autoconf.s/defines.exp
+++ /dev/null
@@ -1,49 +0,0 @@
-# -*- TCL -*-
-# Check for a 1-1 correspondence between acconfig.h and acspecific.m4.
-# Copyright (C) 1994 Free Software Foundation, Inc.
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-# Adapted by David MacKenzie from a shell script by Paul Eggert.
-
-set top_srcdir "$srcdir/.."
-
-set uscript {s/^#undef[ ]*\([^ ]*\).*/\1/p}
-set undefs [exec sed -n $uscript $top_srcdir/acconfig.h]
-
-set dscript {s/.*AC_DEFINE[A-Z_]*(\([^$,)]*\).*/\1/p; s/.*AC_CHECK_TYPE(\([^$,)]*\).*/\1/p}
-set defines [exec sed -n $dscript $top_srcdir/acspecific.m4]
-
-send_user "Checking acspecific.m4 for definitions of symbols in acconfig.h...\n"
-
-foreach u $undefs {
- send_user "$u\n"
- if {[lsearch -exact $defines $u] != -1} {
- xpass "$u"
- } else {
- xfail "$u, not defined"
- }
-}
-
-send_user "Checking acconfig.h for symbols defined in acspecific.m4...\n"
-
-foreach d $defines {
- send_user "$d\n"
- if {[lsearch -exact $undefs $d] != -1} {
- xpass "$d"
- } else {
- xfail "$d, no entry"
- }
-}