summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/devtool.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/devtool.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index ecff3a9ebd..a1cccc39eb 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -1165,9 +1165,10 @@ class DevtoolUpdateTests(DevtoolBase):
1165 result = runCmd('git commit -m "Add a new file"', cwd=tempdir) 1165 result = runCmd('git commit -m "Add a new file"', cwd=tempdir)
1166 self.add_command_to_tearDown('cd %s; rm %s/*.patch; git checkout %s %s' % (os.path.dirname(recipefile), testrecipe, testrecipe, os.path.basename(recipefile))) 1166 self.add_command_to_tearDown('cd %s; rm %s/*.patch; git checkout %s %s' % (os.path.dirname(recipefile), testrecipe, testrecipe, os.path.basename(recipefile)))
1167 result = runCmd('devtool update-recipe %s' % testrecipe) 1167 result = runCmd('devtool update-recipe %s' % testrecipe)
1168 result = runCmd('git add minicom', cwd=os.path.dirname(recipefile))
1168 expected_status = [(' M', '.*/%s$' % os.path.basename(recipefile)), 1169 expected_status = [(' M', '.*/%s$' % os.path.basename(recipefile)),
1169 ('??', '.*/0001-Change-the-README.patch$'), 1170 ('A ', '.*/0001-Change-the-README.patch$'),
1170 ('??', '.*/0002-Add-a-new-file.patch$')] 1171 ('A ', '.*/0002-Add-a-new-file.patch$')]
1171 self._check_repo_status(os.path.dirname(recipefile), expected_status) 1172 self._check_repo_status(os.path.dirname(recipefile), expected_status)
1172 1173
1173 def test_devtool_update_recipe_git(self): 1174 def test_devtool_update_recipe_git(self):