mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
selftest: remove extra backslashes from debug output
Remove unneeded backslashes from the format strings that caused debug output to look confusing: 2017-03-06 16:52:42,428 - selftest.base - DEBUG - Removing from: ... \IMAGE_FSTYPES = "wic" WKS_FILE = "mkefidisk.wks" (From OE-Core rev: 6b7f8f81307720b0a6c1ef4af5200dec9b8ef789) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ac462e464f
commit
5738f86f99
@@ -163,7 +163,7 @@ be re-executed from a clean environment to ensure accurate results.")
|
|||||||
|
|
||||||
# remove data from <builddir>/conf/selftest.inc
|
# remove data from <builddir>/conf/selftest.inc
|
||||||
def remove_config(self, data):
|
def remove_config(self, data):
|
||||||
self.log.debug("Removing from: %s\n\%s\n" % (self.testinc_path, data))
|
self.log.debug("Removing from: %s\n%s\n" % (self.testinc_path, data))
|
||||||
ftools.remove_from_file(self.testinc_path, data)
|
ftools.remove_from_file(self.testinc_path, data)
|
||||||
|
|
||||||
# write to meta-sefltest/recipes-test/<recipe>/test_recipe.inc
|
# write to meta-sefltest/recipes-test/<recipe>/test_recipe.inc
|
||||||
@@ -206,7 +206,7 @@ be re-executed from a clean environment to ensure accurate results.")
|
|||||||
|
|
||||||
# remove data from <builddir>/conf/bblayers.inc
|
# remove data from <builddir>/conf/bblayers.inc
|
||||||
def remove_bblayers_config(self, data):
|
def remove_bblayers_config(self, data):
|
||||||
self.log.debug("Removing from: %s\n\%s\n" % (self.testinc_bblayers_path, data))
|
self.log.debug("Removing from: %s\n%s\n" % (self.testinc_bblayers_path, data))
|
||||||
ftools.remove_from_file(self.testinc_bblayers_path, data)
|
ftools.remove_from_file(self.testinc_bblayers_path, data)
|
||||||
|
|
||||||
# write to <builddir>/conf/machine.inc
|
# write to <builddir>/conf/machine.inc
|
||||||
|
|||||||
Reference in New Issue
Block a user