[OB] gdb.python/py-prettyprint.exp: Check result of run_lang_tests.

Message ID 047d7b15ac0fee14b5051f54de83@google.com
State New, archived
Headers

Commit Message

Doug Evans Sept. 9, 2015, 6:44 p.m. UTC
  Hi.

Another problem found in my testing.
Checked in as obvious.

2015-09-09  Doug Evans  <dje@google.com>

	* gdb.python/py-prettyprint.exp: Check result of run_lang_tests.
  

Patch

diff --git a/gdb/testsuite/gdb.python/py-prettyprint.exp  
b/gdb/testsuite/gdb.python/py-prettyprint.exp
index bbcee56..4cc9654 100644
--- a/gdb/testsuite/gdb.python/py-prettyprint.exp
+++ b/gdb/testsuite/gdb.python/py-prettyprint.exp
@@ -114,8 +114,12 @@  proc run_lang_tests {exefile lang} {
      gdb_continue_to_end
  }

-run_lang_tests "${binfile}" "c"
-run_lang_tests "${binfile}-cxx" "c++"
+if { [run_lang_tests "${binfile}" "c"] == -1 } {
+    return
+}
+if { [run_lang_tests "${binfile}-cxx" "c++"] == -1 } {
+    return
+}

  # Run various other tests.