diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/devtool.py')
-rw-r--r-- | meta/lib/oeqa/selftest/devtool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index f48e6a2557..dcdef5a14b 100644 --- a/meta/lib/oeqa/selftest/devtool.py +++ b/meta/lib/oeqa/selftest/devtool.py | |||
@@ -582,7 +582,7 @@ class DevtoolTests(DevtoolBase): | |||
582 | # Now try with auto mode | 582 | # Now try with auto mode |
583 | runCmd('cd %s; git checkout %s %s' % (os.path.dirname(recipefile), testrecipe, os.path.basename(recipefile))) | 583 | runCmd('cd %s; git checkout %s %s' % (os.path.dirname(recipefile), testrecipe, os.path.basename(recipefile))) |
584 | result = runCmd('devtool update-recipe %s' % testrecipe) | 584 | result = runCmd('devtool update-recipe %s' % testrecipe) |
585 | result = runCmd('git rev-parse --show-toplevel') | 585 | result = runCmd('git rev-parse --show-toplevel', cwd=os.path.dirname(recipefile)) |
586 | topleveldir = result.output.strip() | 586 | topleveldir = result.output.strip() |
587 | relpatchpath = os.path.join(os.path.relpath(os.path.dirname(recipefile), topleveldir), testrecipe) | 587 | relpatchpath = os.path.join(os.path.relpath(os.path.dirname(recipefile), topleveldir), testrecipe) |
588 | expected_status = [(' M', os.path.relpath(recipefile, topleveldir)), | 588 | expected_status = [(' M', os.path.relpath(recipefile, topleveldir)), |