aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2011-12-27 21:29:41 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2011-12-27 21:29:41 +0000
commit3bc96cfbb226922c2eedc9df93a6d18bf532db7f (patch)
treeaf451a829aadbd2f41daa6dd46bb7234b7032c85 /gdb
parentc04316705c262c7a857ae87a5607d4b71ccc34e9 (diff)
downloadfsf-binutils-gdb-3bc96cfbb226922c2eedc9df93a6d18bf532db7f.zip
fsf-binutils-gdb-3bc96cfbb226922c2eedc9df93a6d18bf532db7f.tar.gz
fsf-binutils-gdb-3bc96cfbb226922c2eedc9df93a6d18bf532db7f.tar.bz2
gdb/testsuite/
* gdb.python/py-finish-breakpoint.c (test_exec_exit): Change the parameter to self_exec, adjust the function. (main): Check for argv[1] "exit". Use argv[0] for test_exec_exit. * gdb.python/py-finish-breakpoint.exp (set var self_exec = 0): New test. (set var do_exit = 0): Remove test. (newline at end of file): Add one.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog9
-rw-r--r--gdb/testsuite/gdb.python/py-finish-breakpoint.c11
-rw-r--r--gdb/testsuite/gdb.python/py-finish-breakpoint.exp4
3 files changed, 18 insertions, 6 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index e07ac47..4f49710 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,12 @@
+2011-12-27 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ * gdb.python/py-finish-breakpoint.c (test_exec_exit): Change the
+ parameter to self_exec, adjust the function.
+ (main): Check for argv[1] "exit". Use argv[0] for test_exec_exit.
+ * gdb.python/py-finish-breakpoint.exp (set var self_exec = 0): New test.
+ (set var do_exit = 0): Remove test.
+ (newline at end of file): Add one.
+
2011-12-27 Joel Brobecker <brobecker@adacore.com>
* gdb.base/dmsym.c, gdb.base/dmsym_main.c, gdb.base/dmsym.exp:
diff --git a/gdb/testsuite/gdb.python/py-finish-breakpoint.c b/gdb/testsuite/gdb.python/py-finish-breakpoint.c
index cf2e06c..d8a5c1c 100644
--- a/gdb/testsuite/gdb.python/py-finish-breakpoint.c
+++ b/gdb/testsuite/gdb.python/py-finish-breakpoint.c
@@ -59,12 +59,12 @@ call_longjmp (jmp_buf *buf)
}
void
-test_exec_exit (int do_exit)
+test_exec_exit (const char *self_exec)
{
- if (do_exit)
+ if (self_exec == NULL)
exit (0);
else
- execl ("/bin/echo", "echo", "-1", (char *)0);
+ execl (self_exec, self_exec, "exit", (char *)0);
}
int main (int argc, char *argv[])
@@ -74,6 +74,9 @@ int main (int argc, char *argv[])
int bar = 42;
int i, j;
+ if (argc == 2 && strcmp (argv[1], "exit") == 0)
+ return 0;
+
do_nothing ();
i = 0;
@@ -94,7 +97,7 @@ int main (int argc, char *argv[])
else
j += 1; /* after longjmp. */
- test_exec_exit (1);
+ test_exec_exit (argv[0]);
return j; /* Break at end. */
}
diff --git a/gdb/testsuite/gdb.python/py-finish-breakpoint.exp b/gdb/testsuite/gdb.python/py-finish-breakpoint.exp
index c7a42a2..fbdc5db 100644
--- a/gdb/testsuite/gdb.python/py-finish-breakpoint.exp
+++ b/gdb/testsuite/gdb.python/py-finish-breakpoint.exp
@@ -247,6 +247,7 @@ if ![runto "test_exec_exit"] then {
return 0
}
+gdb_test_no_output "set var self_exec = 0" "switch to exit() test"
gdb_test "python SimpleFinishBreakpoint(gdb.newest_frame())" "SimpleFinishBreakpoint init" "set FinishBP after the exit()"
gdb_test "continue" "SimpleFinishBreakpoint out of scope.*" "catch out of scope after exit"
@@ -259,7 +260,6 @@ if ![runto "test_exec_exit"] then {
return 0
}
-gdb_test_no_output "set var do_exit = 0" "switch to execve() test"
gdb_test "python SimpleFinishBreakpoint(gdb.newest_frame())" "SimpleFinishBreakpoint init" "set FinishBP after the exec"
gdb_test "catch exec" "Catchpoint.*\(exec\).*" "catch exec"
-gdb_test "continue" "SimpleFinishBreakpoint out of scope.*" "catch out of scope after exec" \ No newline at end of file
+gdb_test "continue" "SimpleFinishBreakpoint out of scope.*" "catch out of scope after exec"