Mercurial > public > mercurial-scm > hg-stable
diff tests/test-import-git.t @ 28341:8286f551b7ee
patch: when importing from email, RFC2047-decode From/Subject headers
Reported at https://bugs.debian.org/737498
author | Julien Cristau <julien.cristau@logilab.fr> |
---|---|
date | Thu, 03 Mar 2016 18:34:19 +0100 |
parents | 72d7d390ef5d |
children | c64926b365b6 |
line wrap: on
line diff
--- a/tests/test-import-git.t Wed Mar 02 22:39:03 2016 +0000 +++ b/tests/test-import-git.t Thu Mar 03 18:34:19 2016 +0100 @@ -822,4 +822,27 @@ > EOF applying patch from stdin +Test email metadata + + $ hg revert -qa + $ hg --encoding utf-8 import - <<EOF + > From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= <hertzog@debian.org> + > Subject: [PATCH] =?UTF-8?q?=C5=A7=E2=82=AC=C3=9F=E1=B9=AA?= + > + > diff --git a/a b/a + > --- a/a + > +++ b/a + > @@ -1,1 +1,2 @@ + > a + > +a + > EOF + applying patch from stdin + $ hg --encoding utf-8 log -r . + changeset: 2:* (glob) + tag: tip + user: Rapha\xc3\xabl Hertzog <hertzog@debian.org> (esc) + date: * (glob) + summary: \xc5\xa7\xe2\x82\xac\xc3\x9f\xe1\xb9\xaa (esc) + + $ cd ..