summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/base.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2017-03-06 17:10:13 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-08 11:52:56 +0000
commit5738f86f99e6067ddf9cccaa39d85bce464b4b94 (patch)
treebf35d3df3571843feb3bca0fd8fedfb9820f7a09 /meta/lib/oeqa/selftest/base.py
parentac462e464f8bb879f54d9de14b8b2744fa8c6419 (diff)
downloadpoky-5738f86f99e6067ddf9cccaa39d85bce464b4b94.tar.gz
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>
Diffstat (limited to 'meta/lib/oeqa/selftest/base.py')
-rw-r--r--meta/lib/oeqa/selftest/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/base.py b/meta/lib/oeqa/selftest/base.py
index 26c93f905a..47a8ea8271 100644
--- a/meta/lib/oeqa/selftest/base.py
+++ b/meta/lib/oeqa/selftest/base.py
@@ -163,7 +163,7 @@ be re-executed from a clean environment to ensure accurate results.")
163 163
164 # remove data from <builddir>/conf/selftest.inc 164 # remove data from <builddir>/conf/selftest.inc
165 def remove_config(self, data): 165 def remove_config(self, data):
166 self.log.debug("Removing from: %s\n\%s\n" % (self.testinc_path, data)) 166 self.log.debug("Removing from: %s\n%s\n" % (self.testinc_path, data))
167 ftools.remove_from_file(self.testinc_path, data) 167 ftools.remove_from_file(self.testinc_path, data)
168 168
169 # write to meta-sefltest/recipes-test/<recipe>/test_recipe.inc 169 # 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.")
206 206
207 # remove data from <builddir>/conf/bblayers.inc 207 # remove data from <builddir>/conf/bblayers.inc
208 def remove_bblayers_config(self, data): 208 def remove_bblayers_config(self, data):
209 self.log.debug("Removing from: %s\n\%s\n" % (self.testinc_bblayers_path, data)) 209 self.log.debug("Removing from: %s\n%s\n" % (self.testinc_bblayers_path, data))
210 ftools.remove_from_file(self.testinc_bblayers_path, data) 210 ftools.remove_from_file(self.testinc_bblayers_path, data)
211 211
212 # write to <builddir>/conf/machine.inc 212 # write to <builddir>/conf/machine.inc