aboutsummaryrefslogtreecommitdiff
path: root/contrib/gcc-changelog/test_email.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gcc-changelog/test_email.py')
-rwxr-xr-xcontrib/gcc-changelog/test_email.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/gcc-changelog/test_email.py b/contrib/gcc-changelog/test_email.py
index d0de88c..b9d0cb4 100755
--- a/contrib/gcc-changelog/test_email.py
+++ b/contrib/gcc-changelog/test_email.py
@@ -44,7 +44,7 @@ class TestGccChangelog(unittest.TestCase):
filename = None
patch_lines = []
- with open(os.path.join(script_path, 'test_patches.txt')) as f:
+ with open(os.path.join(script_path, 'test_patches.txt'), newline='\n') as f:
lines = f.read()
for line in lines.split('\n'):
if line.startswith('==='):
@@ -455,3 +455,7 @@ class TestGccChangelog(unittest.TestCase):
def test_space_after_tab(self):
email = self.from_patch_glob('0001-Use-Value_Range-when-applying-inferred-ranges.patch')
assert (email.errors[0].message == 'extra space after tab')
+
+ def test_CR_in_patch(self):
+ email = self.from_patch_glob('0001-Add-M-character.patch')
+ assert (email.errors[0].message == 'cannot find a ChangeLog location in message')