gdb/testsuite/

Fix fuzzy results.
	* gdb.mi/var-cmd.c (do_locals_tests): Initialize variables lsimple,
	lpsimple and func.
This commit is contained in:
Jan Kratochvil 2012-01-24 20:35:35 +00:00
parent a9b3a50fba
commit 30b91c9079
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
Fix fuzzy results.
* gdb.mi/var-cmd.c (do_locals_tests): Initialize variables lsimple,
lpsimple and func.
2012-01-24 Gary Benson <gbenson@redhat.com>
Delete #if 0'd out code.

View File

@ -140,9 +140,9 @@ do_locals_tests ()
float *lpfloat = 0;
double ldouble = 0;
double *lpdouble = 0;
struct _simple_struct lsimple;
struct _simple_struct *lpsimple;
void (*func) (void);
struct _simple_struct lsimple = { 0 };
struct _simple_struct *lpsimple = 0;
void (*func) (void) = 0;
/* Simple assignments */
linteger = 1234;