mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
* gdb.base/setshow.exp: New file, tests show and set.
* gdb.base/setshow.c: New file, tests show and set. * gdb.base/help.exp: Add test for help set|show annotate. * gdb.base/default.exp: Add test for set|show annotate. PR 8511
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
Mon Oct 21 14:00:37 1996 Michael Snyder <msnyder@cleaver.cygnus.com>
|
||||||
|
|
||||||
|
* gdb.base/setshow.exp: New file, tests show and set.
|
||||||
|
* gdb.base/setshow.c: New file, tests show and set.
|
||||||
|
* gdb.base/help.exp: Add test for help set|show annotate.
|
||||||
|
* gdb.base/default.exp: Add test for set|show annotate.
|
||||||
|
|
||||||
Tue Oct 15 16:45:02 1996 Stu Grossman (grossman@critters.cygnus.com)
|
Tue Oct 15 16:45:02 1996 Stu Grossman (grossman@critters.cygnus.com)
|
||||||
|
|
||||||
* config/sim-gdb.exp (gdb_target_sim): Remove setting of height
|
* config/sim-gdb.exp (gdb_target_sim): Remove setting of height
|
||||||
|
16
gdb/testsuite/gdb.base/setshow.c
Normal file
16
gdb/testsuite/gdb.base/setshow.c
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/* IMPORTANT: leave this comment in the first line of this source file. */
|
||||||
|
/* this will guarantee that line 1 contains no code. */
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(argc, argv)
|
||||||
|
int argc;
|
||||||
|
char **argv;
|
||||||
|
{
|
||||||
|
int i = 1;
|
||||||
|
|
||||||
|
while (i < argc)
|
||||||
|
printf ("%s ", argv[i++]);
|
||||||
|
return 0;
|
||||||
|
}
|
Reference in New Issue
Block a user