diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2014-01-18 16:04:36 +0000 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2014-01-18 18:09:28 +0000 |
commit | 7f420862a712047fa2c0031ce42a28861ac43546 (patch) | |
tree | 6f3e2bfbe7b8b3c8165804a6e824ba5888e28231 /gdb/testsuite/gdb.dlang | |
parent | d36b3012940ae4cb24d19359e6781efa2d92db41 (diff) | |
download | gdb-7f420862a712047fa2c0031ce42a28861ac43546.zip gdb-7f420862a712047fa2c0031ce42a28861ac43546.tar.gz gdb-7f420862a712047fa2c0031ce42a28861ac43546.tar.bz2 |
Add gdb.dlang to the gdb testsuite for the purpose of creating D
specific tests.
gdb/testsuite/ChangeLog:
2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
* configure.ac: Create gdb.dlang/Makefile.
* configure: Regenerate.
* Makefile.in (ALL_SUBDIRS): Add gdb.dlang.
* gdb.dlang/Makefile.in: New file.
* lib/d-support.exp: New file.
* lib/gdb.exp (skip_d_tests): New proc.
Diffstat (limited to 'gdb/testsuite/gdb.dlang')
-rw-r--r-- | gdb/testsuite/gdb.dlang/Makefile.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.dlang/Makefile.in b/gdb/testsuite/gdb.dlang/Makefile.in new file mode 100644 index 0000000..5527c3e --- /dev/null +++ b/gdb/testsuite/gdb.dlang/Makefile.in @@ -0,0 +1,15 @@ +VPATH = @srcdir@ +srcdir = @srcdir@ + +EXECUTABLES = + +all info install-info dvi install uninstall installcheck check: + @echo "Nothing to be done for $@..." + +clean mostlyclean: + -rm -f *~ *.o *.ci + -rm -f *.dwo *.dwp + -rm -f core ${EXECUTABLES} + +distclean maintainer-clean realclean: clean + -rm -f Makefile config.status config.log gdb.log gdb.sum |