diff options
author | DJ Delorie <dj@redhat.com> | 2006-01-21 04:28:49 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2006-01-21 04:28:49 +0000 |
commit | 67d78caad5228c04e198e8e5d96dc27fdc28adb9 (patch) | |
tree | 398b5d170ffffe464c4c9ea708ce0101e3946b70 /libiberty/testsuite/Makefile.in | |
parent | acab6ab29b26848dc49786d1b488961038bf99b4 (diff) | |
download | gdb-67d78caad5228c04e198e8e5d96dc27fdc28adb9.zip gdb-67d78caad5228c04e198e8e5d96dc27fdc28adb9.tar.gz gdb-67d78caad5228c04e198e8e5d96dc27fdc28adb9.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/testsuite/Makefile.in')
-rw-r--r-- | libiberty/testsuite/Makefile.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/libiberty/testsuite/Makefile.in b/libiberty/testsuite/Makefile.in index 2be6bb3..67e1d28 100644 --- a/libiberty/testsuite/Makefile.in +++ b/libiberty/testsuite/Makefile.in @@ -45,7 +45,7 @@ all: # CHECK is set to "really_check" or the empty string by configure. check: @CHECK@ -really-check: check-cplus-dem check-pexecute +really-check: check-cplus-dem check-pexecute check-expandargv # Run some tests of the demangler. check-cplus-dem: test-demangle $(srcdir)/demangle-expected @@ -55,6 +55,10 @@ check-cplus-dem: test-demangle $(srcdir)/demangle-expected check-pexecute: test-pexecute ./test-pexecute +# Check the expandargv functionality +check-expandargv: test-expandargv + ./test-expandargv + TEST_COMPILE = $(CC) @DEFS@ $(LIBCFLAGS) -I.. -I$(INCDIR) $(HDEFINES) test-demangle: $(srcdir)/test-demangle.c ../libiberty.a $(TEST_COMPILE) -o test-demangle \ @@ -63,6 +67,10 @@ test-demangle: $(srcdir)/test-demangle.c ../libiberty.a test-pexecute: $(srcdir)/test-pexecute.c ../libiberty.a $(TEST_COMPILE) -DHAVE_CONFIG_H -I.. -o test-pexecute \ $(srcdir)/test-pexecute.c ../libiberty.a + +test-expandargv: $(srcdir)/test-expandargv.c ../libiberty.a + $(TEST_COMPILE) -DHAVE_CONFIG_H -I.. -o test-expandargv \ + $(srcdir)/test-expandargv.c ../libiberty.a # Standard (either GNU or Cygnus) rules we don't use. info install-info clean-info dvi install etags tags installcheck: @@ -70,6 +78,8 @@ info install-info clean-info dvi install etags tags installcheck: # The standard clean rules. mostlyclean: rm -f test-demangle + rm -f test-pexecute + rm -f test-expandargv clean: mostlyclean distclean: clean rm -f Makefile |