aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJacob Bachmeyer <jcb@gnu.org>2023-11-07 21:08:04 -0600
committerJacob Bachmeyer <jcb@gnu.org>2023-11-07 21:08:04 -0600
commita877b418a00dcc3c5b4d7584e0d85949c843c4ed (patch)
tree47bb502fdce45ccff915c27346e97e2c071cd3e9 /ChangeLog
parentc298959ef991b389b64a825f70094738c6a48780 (diff)
downloaddejagnu-a877b418a00dcc3c5b4d7584e0d85949c843c4ed.zip
dejagnu-a877b418a00dcc3c5b4d7584e0d85949c843c4ed.tar.gz
dejagnu-a877b418a00dcc3c5b4d7584e0d85949c843c4ed.tar.bz2
Fix tests that attempt to determine if target_alias has been set
The problem with using [info exists target_alias] is that target_alias is unconditionally initialized to the empty string and therefore always exists.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a012ce..dbf90c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2023-11-07 Jacob Bachmeyer <jcb@gnu.org>
+
+ PR66984
+
+ * runtest.exp: Change tests for [info exists target_alias] to
+ instead test for the empty string, to which target_alias is
+ unconditionally initialized at early startup.
+
2023-04-20 Jacob Bachmeyer <jcb@gnu.org>
PR62982