aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.ada/watch_arg/watch.adb8
2 files changed, 9 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index bc55d70..91fea82 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,10 @@
2010-05-17 Joel Brobecker <brobecker@adacore.com>
+ * gdb.ada/watch_arg/watch.adb: Rewrite testcase to avoid the
+ parameter that we want to watch being a constant.
+
+2010-05-17 Joel Brobecker <brobecker@adacore.com>
+
* gdb.ada/cond_lang: New testcase.
2010-05-17 Joel Brobecker <brobecker@adacore.com>
diff --git a/gdb/testsuite/gdb.ada/watch_arg/watch.adb b/gdb/testsuite/gdb.ada/watch_arg/watch.adb
index b95e3a0..3b7cb27 100644
--- a/gdb/testsuite/gdb.ada/watch_arg/watch.adb
+++ b/gdb/testsuite/gdb.ada/watch_arg/watch.adb
@@ -15,15 +15,15 @@
procedure Watch is
- procedure Foo (X : access Integer) is
+ procedure Foo (X : in out Integer) is
begin
- X.all := 3; -- BREAK1
+ X := 3; -- BREAK1
end Foo;
- X : aliased Integer := 1;
+ X : Integer := 1;
begin
- Foo (X'Access);
+ Foo (X);
X := 2; -- BREAK2
end Watch;