Bump timeouts for a couple gdb.reverse/*-precsave.exp tests
authorPedro Alves <palves@redhat.com>
Thu, 6 Aug 2015 23:04:48 +0000 (00:04 +0100)
committerPedro Alves <palves@redhat.com>
Thu, 6 Aug 2015 23:09:35 +0000 (00:09 +0100)
The buildbot shows that PPC64 and x86_64 builders, both native and
extended-remote gdbserver frequently timeout these tests.
until-precsave.exp times out on my x86_64 occasionally as well.
Inspecting the logs, we see that if we waited some more, the tests
would pass.

Simply bump until-precsave.exp timeouts further, and apply the same
treatment to step-precsave.exp.

gdb/testsuite/ChangeLog:
2015-08-06  Pedro Alves <palves@redhat.com>

* gdb.reverse/step-precsave.exp: Use with_timeout_factor to
increase timeout.
* gdb.reverse/until-precsave.exp: Bump timeouts.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.reverse/step-precsave.exp
gdb/testsuite/gdb.reverse/until-precsave.exp

index e4be76eb0b5858796eeb560282028c76ee94faa6..bf845a4dbfabd305ab592bbb642627578462af88 100644 (file)
@@ -1,3 +1,9 @@
+2015-08-06  Pedro Alves <palves@redhat.com>
+
+       * gdb.reverse/step-precsave.exp: Use with_timeout_factor to
+       increase timeout.
+       * gdb.reverse/until-precsave.exp: Bump timeouts.
+
 2015-08-06  Pedro Alves  <palves@redhat.com>
 
        * gdb.base/valgrind-infcall.exp: Issue a "disconnect".
index 5b1b41657999240f0ca624553fc65caa067b54af..f2a52994b304796c1b182b920aa98d52f2281ceb 100644 (file)
@@ -44,11 +44,18 @@ gdb_test "break $end_of_main" \
     "Breakpoint $decimal at .*$srcfile, line $end_of_main\." \
     "BP at end of main"
 
-gdb_test "continue" "Breakpoint .* end of main .*" "run to end of main"
+# This can take awhile.
+with_timeout_factor 20 {
+    gdb_test "continue" "Breakpoint .* end of main .*" "run to end of main"
+}
+
+# So can this, against gdbserver, for example.
 
-gdb_test "record save $precsave" \
-    "Saved core file $precsave with execution log\."  \
-    "save process recfile"
+with_timeout_factor 10 {
+    gdb_test "record save $precsave" \
+       "Saved core file $precsave with execution log\."  \
+       "save process recfile"
+}
 
 gdb_test "kill" "" "Kill process, prepare to debug log file" \
     "Kill the program being debugged\\? \\(y or n\\) " "y"
index 640839fea5737839deacb9a842c404b490a8c52e..f0e9d1d25c555d70f2099a03f778e853d07c13dc 100644 (file)
@@ -49,13 +49,13 @@ gdb_test "break $end_of_main" \
     "BP at end of main"
 
 # This can take awhile.
-with_timeout_factor 15 {
+with_timeout_factor 20 {
     gdb_test "continue" "Breakpoint .* set breakpoint 10a here .*" "run to end of main"
 }
 
 # So can this, against gdbserver, for example.
 
-with_timeout_factor 3 {
+with_timeout_factor 10 {
     gdb_test "record save $precsave" \
        "Saved core file $precsave with execution log\."  \
        "save process recfile"