aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite
diff options
context:
space:
mode:
authorDavid Taylor <taylor@redhat.com>1999-01-08 23:42:20 +0000
committerDavid Taylor <taylor@redhat.com>1999-01-08 23:42:20 +0000
commite8ce2368b3b64336588ea494f79ddf71c25c6c0d (patch)
treef47c3c1f51564c0cd5edbc146976e22e85028fa0 /gdb/testsuite
parent7e745333bb11ea83680dce93c3b699bfcc11c3f4 (diff)
downloadfsf-binutils-gdb-e8ce2368b3b64336588ea494f79ddf71c25c6c0d.zip
fsf-binutils-gdb-e8ce2368b3b64336588ea494f79ddf71c25c6c0d.tar.gz
fsf-binutils-gdb-e8ce2368b3b64336588ea494f79ddf71c25c6c0d.tar.bz2
new file -- part of HP merge.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r--gdb/testsuite/gdb.base/smoke.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/smoke.c b/gdb/testsuite/gdb.base/smoke.c
new file mode 100644
index 0000000..69d34c9
--- /dev/null
+++ b/gdb/testsuite/gdb.base/smoke.c
@@ -0,0 +1,40 @@
+/* Test various kinds of stepping.
+*/
+int glob = 0;
+
+int callee() {
+ glob++;
+ return (0);
+}
+
+int main () {
+ int w,x,y,z;
+ int a[10], b[10];
+
+ /* Test "next" and "step" */
+ w = 0;
+ x = 1;
+ y = 2;
+ z = 3;
+ w = w + 2;
+ x = x + 3;
+ y = y + 4;
+ z = z + 5;
+
+ /* Test that "next" goes over a call */
+ callee(); /* OVER */
+
+ /* Test that "step" doesn't */
+ callee(); /* INTO */
+
+ /* Test "stepi" */
+ a[5] = a[3] - a[4];
+ callee(); /* STEPI */
+
+ /* Test "nexti" */
+ callee(); /* NEXTI */
+
+ y = w + z;
+
+ return (0);
+}