diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oeqa/selftest/context.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py index c98763735f..39325f4b72 100644 --- a/meta/lib/oeqa/selftest/context.py +++ b/meta/lib/oeqa/selftest/context.py | |||
| @@ -97,7 +97,7 @@ class OESelftestTestContext(OETestContext): | |||
| 97 | oe.path.copytree(builddir + "/cache", newbuilddir + "/cache") | 97 | oe.path.copytree(builddir + "/cache", newbuilddir + "/cache") |
| 98 | oe.path.copytree(selftestdir, newselftestdir) | 98 | oe.path.copytree(selftestdir, newselftestdir) |
| 99 | 99 | ||
| 100 | subprocess.check_output("git init; git add *; git commit -a -m 'initial'", cwd=newselftestdir, shell=True) | 100 | subprocess.check_output("git init && git add * && git commit -a -m 'initial'", cwd=newselftestdir, shell=True) |
| 101 | 101 | ||
| 102 | # Tried to used bitbake-layers add/remove but it requires recipe parsing and hence is too slow | 102 | # Tried to used bitbake-layers add/remove but it requires recipe parsing and hence is too slow |
| 103 | subprocess.check_output("sed %s/conf/bblayers.conf -i -e 's#%s#%s#g'" % (newbuilddir, selftestdir, newselftestdir), cwd=newbuilddir, shell=True) | 103 | subprocess.check_output("sed %s/conf/bblayers.conf -i -e 's#%s#%s#g'" % (newbuilddir, selftestdir, newselftestdir), cwd=newbuilddir, shell=True) |
