]> git.eshelyaron.com Git - emacs.git/commitdiff
Update gdb-mi-tests
authorMattias Engdegård <mattiase@acm.org>
Fri, 6 Nov 2020 14:37:17 +0000 (15:37 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 6 Nov 2020 14:37:17 +0000 (15:37 +0100)
* test/lisp/progmodes/gdb-mi-tests.el (gdb-mi-parse-value):
Make test pass after the change in gdb-mi-decode-strings default value.

test/lisp/progmodes/gdb-mi-tests.el

index 79493a571b60e32b3099a6fbb8798d8f4b4180a1..64b7a266635ddfd5596873e37ad7dbbb5c8d3025 100644 (file)
            '((alpha . "ab\ncd")
              (beta . ("x" ("y" (delta . ())))))))
 
-  (should (equal (gdb-mi--from-string "alpha=\"a\\303\\245b\"")
-                 `((alpha . ,(string-to-multibyte "a\303\245b")))))
+  (let ((gdb-mi-decode-strings nil))
+    (let ((ref `((alpha . ,(string-to-multibyte "a\303\245b")))))
+      (should (equal (gdb-mi--from-string "alpha=\"a\\303\\245b\"")
+                     ref))))
   (let ((gdb-mi-decode-strings 'utf-8))
     (should (equal (gdb-mi--from-string "alpha=\"a\\303\\245b\"")
                    '((alpha . "aåb")))))