summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/ending-run.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.base/ending-run.c')
-rw-r--r--gdb/testsuite/gdb.base/ending-run.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/gdb/testsuite/gdb.base/ending-run.c b/gdb/testsuite/gdb.base/ending-run.c
deleted file mode 100644
index 8c67706fbe9..00000000000
--- a/gdb/testsuite/gdb.base/ending-run.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Test program for <next-at-end> and
- * <leaves-core-file-on-quit> bugs.
- */
-#include <stdio.h>
-#include <stdlib.h>
-
-#ifdef PROTOTYPES
-int callee (int x)
-#else
-int callee( x )
-int x;
-#endif
-{
- int y = x * x;
- return (y - 2);
-}
-
-int main()
-{
-
- int *p;
- int i;
-
- p = (int *) malloc( 4 );
-
- for (i = 1; i < 10; i++)
- {
- printf( "%d ", callee( i ));
- fflush (stdout);
- }
- printf( " Goodbye!\n" ); fflush (stdout);
- return 0;
-}