summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest')
-rw-r--r--meta/lib/oeqa/selftest/devtool.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index d95cb08749..345cabbda9 100644
--- a/meta/lib/oeqa/selftest/devtool.py
+++ b/meta/lib/oeqa/selftest/devtool.py
@@ -570,7 +570,8 @@ class DevtoolTests(DevtoolBase):
570 self.track_for_cleanup(self.workspacedir) 570 self.track_for_cleanup(self.workspacedir)
571 self.add_command_to_tearDown('bitbake-layers remove-layer */workspace') 571 self.add_command_to_tearDown('bitbake-layers remove-layer */workspace')
572 # (don't bother with cleaning the recipe on teardown, we won't be building it) 572 # (don't bother with cleaning the recipe on teardown, we won't be building it)
573 result = runCmd('devtool modify %s -x %s' % (testrecipe, tempdir)) 573 # We don't use -x here so that we test the behaviour of devtool modify without it
574 result = runCmd('devtool modify %s %s' % (testrecipe, tempdir))
574 # Check git repo 575 # Check git repo
575 self._check_src_repo(tempdir) 576 self._check_src_repo(tempdir)
576 # Add a couple of commits 577 # Add a couple of commits