public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH][gdb/testsuite] Handle unordered dict in gdb.python/py-mi-cmd.exp
@ 2022-06-13 11:05 Tom de Vries
  2022-06-14 17:01 ` Andrew Burgess
  0 siblings, 1 reply; 2+ messages in thread
From: Tom de Vries @ 2022-06-13 11:05 UTC (permalink / raw)
  To: gdb-patches; +Cc: Andrew Burgess

Hi,

When running test-case gdb.python/py-mi-cmd.exp on openSUSE Leap 42.3 with
python 3.4, I occasionally run into:
...
Expecting: ^(-pycmd dct[^M
]+)?(\^done,result={hello="world",times="42"}[^M
]+[(]gdb[)] ^M
[ ]*)
-pycmd dct^M
^done,result={times="42",hello="world"}^M
(gdb) ^M
FAIL: gdb.python/py-mi-cmd.exp: -pycmd dct (unexpected output)
...

The problem is that the data type used here in py-mi-cmd.py:
...
        elif argv[0] == "dct":
            return {"result": {"hello": "world", "times": 42}}
...
is a dictionary, and only starting version 3.6 are dictionaries insertion
ordered, so using PyDict_Next in serialize_mi_result doesn't guarantee a
fixed order.

Fix this by allowing the alternative order.

Tested on x86_64-linux.

Any comments?

Thanks,
- Tom

[gdb/testsuite] Handle unordered dict in gdb.python/py-mi-cmd.exp

---
 gdb/testsuite/gdb.python/py-mi-cmd.exp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gdb/testsuite/gdb.python/py-mi-cmd.exp b/gdb/testsuite/gdb.python/py-mi-cmd.exp
index d372518a031..733686098f8 100644
--- a/gdb/testsuite/gdb.python/py-mi-cmd.exp
+++ b/gdb/testsuite/gdb.python/py-mi-cmd.exp
@@ -54,8 +54,10 @@ mi_gdb_test "-pycmd ary" \
     "\\^done,result=\\\[\"Hello\",\"42\"\\\]" \
     "-pycmd ary"
 
+set re_order1 "\\^done,result={hello=\"world\",times=\"42\"}"
+set re_order2 "\\^done,result={times=\"42\",hello=\"world\"}"
 mi_gdb_test "-pycmd dct" \
-    "\\^done,result={hello=\"world\",times=\"42\"}" \
+    "($re_order1|$re_order2)" \
     "-pycmd dct"
 
 mi_gdb_test "-pycmd bk1" \

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH][gdb/testsuite] Handle unordered dict in gdb.python/py-mi-cmd.exp
  2022-06-13 11:05 [PATCH][gdb/testsuite] Handle unordered dict in gdb.python/py-mi-cmd.exp Tom de Vries
@ 2022-06-14 17:01 ` Andrew Burgess
  0 siblings, 0 replies; 2+ messages in thread
From: Andrew Burgess @ 2022-06-14 17:01 UTC (permalink / raw)
  To: Tom de Vries, gdb-patches

Tom de Vries via Gdb-patches <gdb-patches@sourceware.org> writes:

> Hi,
>
> When running test-case gdb.python/py-mi-cmd.exp on openSUSE Leap 42.3 with
> python 3.4, I occasionally run into:
> ...
> Expecting: ^(-pycmd dct[^M
> ]+)?(\^done,result={hello="world",times="42"}[^M
> ]+[(]gdb[)] ^M
> [ ]*)
> -pycmd dct^M
> ^done,result={times="42",hello="world"}^M
> (gdb) ^M
> FAIL: gdb.python/py-mi-cmd.exp: -pycmd dct (unexpected output)
> ...
>
> The problem is that the data type used here in py-mi-cmd.py:
> ...
>         elif argv[0] == "dct":
>             return {"result": {"hello": "world", "times": 42}}
> ...
> is a dictionary, and only starting version 3.6 are dictionaries insertion
> ordered, so using PyDict_Next in serialize_mi_result doesn't guarantee a
> fixed order.
>
> Fix this by allowing the alternative order.
>
> Tested on x86_64-linux.
>
> Any comments?

LGTM.

Thanks,
Andrew

>
> Thanks,
> - Tom
>
> [gdb/testsuite] Handle unordered dict in gdb.python/py-mi-cmd.exp
>
> ---
>  gdb/testsuite/gdb.python/py-mi-cmd.exp | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/gdb/testsuite/gdb.python/py-mi-cmd.exp b/gdb/testsuite/gdb.python/py-mi-cmd.exp
> index d372518a031..733686098f8 100644
> --- a/gdb/testsuite/gdb.python/py-mi-cmd.exp
> +++ b/gdb/testsuite/gdb.python/py-mi-cmd.exp
> @@ -54,8 +54,10 @@ mi_gdb_test "-pycmd ary" \
>      "\\^done,result=\\\[\"Hello\",\"42\"\\\]" \
>      "-pycmd ary"
>  
> +set re_order1 "\\^done,result={hello=\"world\",times=\"42\"}"
> +set re_order2 "\\^done,result={times=\"42\",hello=\"world\"}"
>  mi_gdb_test "-pycmd dct" \
> -    "\\^done,result={hello=\"world\",times=\"42\"}" \
> +    "($re_order1|$re_order2)" \
>      "-pycmd dct"
>  
>  mi_gdb_test "-pycmd bk1" \


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-14 17:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-13 11:05 [PATCH][gdb/testsuite] Handle unordered dict in gdb.python/py-mi-cmd.exp Tom de Vries
2022-06-14 17:01 ` Andrew Burgess

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).