This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] Make sure we mkdir gdb/testsuite/gdb.python


>make check RUNTESTFLAGS="--directory=gdb.python"
[...]
Running target unix
Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
Using ../../../src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../src/gdb/testsuite/gdb.python/python-value.exp ...
gdb compile failed, /usr/bin/ld: cannot open output file /home/pedro/gdb/baseline/build/gdb/testsuite/gdb.python/python-value: No such file or directory
collect2: ld returned 1 exit status
Running ../../../src/gdb/testsuite/gdb.python/python.exp ...

                === gdb Summary ===

# of expected passes            14
# of untested testcases         1
/home/pedro/gdb/baseline/build/gdb/testsuite/../../gdb/gdb version  6.8.50.20081019-cvs -nx

[pedro@orlando][~/gdb/baseline/build/gdb/testsuite]
>ls gdb.python
ls: cannot access gdb.python: No such file or directory

I'm checking in the attached to fix this.

-- 
Pedro Alves
2008-10-19  Pedro Alves  <pedro@codesourcery.com>

	* configure.ac: Output gdb.python/Makefile.
	* configure: Regenerate.
	* gdb.python/Makefile.in: New.

---

 gdb/testsuite/configure.ac           |    1 
 gdb/testsuite/gdb.python/Makefile.in |   14 +++
 2 files changed, 15 insertions(+)

--- src/gdb/testsuite/configure.ac	(revision 225272)
+++ src/gdb/testsuite/configure.ac	(local)
@@ -117,4 +117,5 @@ AC_OUTPUT([Makefile \
   gdb.fortran/Makefile gdb.server/Makefile \
   gdb.java/Makefile gdb.mi/Makefile gdb.modula2/Makefile \
   gdb.objc/Makefile gdb.opt/Makefile gdb.pascal/Makefile \
+  gdb.python/Makefile \
   gdb.threads/Makefile gdb.trace/Makefile gdb.xml/Makefile])
Index: src/gdb/testsuite/gdb.python/Makefile.in
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ src/gdb/testsuite/gdb.python/Makefile.in	2008-10-19 20:40:02.000000000 +0100
@@ -0,0 +1,14 @@
+VPATH = @srcdir@
+srcdir = @srcdir@
+
+EXECUTABLES = python-value
+
+all info install-info dvi install uninstall installcheck check:
+	@echo "Nothing to be done for $@..."
+
+clean mostlyclean:
+	-rm -f *~ *.o *.ci
+	-rm -f core $(EXECUTABLES)
+
+distclean maintainer-clean realclean: clean
+	-rm -f Makefile config.status config.log

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]