diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-06-24 06:36:27 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-06-24 06:36:27 +0000 |
commit | 1c06bd587ec3d6fc1c8a28aafd05c54aa41ec57d (patch) | |
tree | 7145b658e7db371bd9ad5b7d3f276937da41da8a /gdb | |
parent | d3e9f07561d8b026a0148c98d7b246700eb1eb15 (diff) | |
download | gdb-1c06bd587ec3d6fc1c8a28aafd05c54aa41ec57d.zip gdb-1c06bd587ec3d6fc1c8a28aafd05c54aa41ec57d.tar.gz gdb-1c06bd587ec3d6fc1c8a28aafd05c54aa41ec57d.tar.bz2 |
gdb/testsuite/
Fix regression by the previous commit.
* gdb.python/lib-types.exp: Add c++ to the compilation flags.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/lib-types.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 7f53b84..bd572f8 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com> + + Fix regression by the previous commit. + * gdb.python/lib-types.exp: Add c++ to the compilation flags. + 2012-06-22 Tom Tromey <tromey@redhat.com> * gdb.python/lib-types.exp: Use standard_testfile, diff --git a/gdb/testsuite/gdb.python/lib-types.exp b/gdb/testsuite/gdb.python/lib-types.exp index fde0740..f38ec1c 100644 --- a/gdb/testsuite/gdb.python/lib-types.exp +++ b/gdb/testsuite/gdb.python/lib-types.exp @@ -20,7 +20,7 @@ load_lib gdb-python.exp standard_testfile .cc -if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} { +if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} { return -1 } |