summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRandy Witt <randy.e.witt@linux.intel.com>2015-03-16 11:14:13 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-20 11:27:51 +0000
commit8b8baf5de3f0caa0be1ade4747e36515214a6af4 (patch)
tree757ea467a252f0a7a1f00e3e522168ee24ccd343 /meta
parenta7701ba854e9cbdf17eedf5f6df1b58aad0d8f4d (diff)
downloadpoky-8b8baf5de3f0caa0be1ade4747e36515214a6af4.tar.gz
lib/oeqa/selftest/lic-checksum: Rename test_foo
test_foo is renamed to test_nonmatching_checksum. It was a mistake to submit it with the old name. There was also some extra whitespace removed. (From OE-Core rev: 95eed3038f48337d06a3eba0f6e355f3f78c6974) Signed-off-by: Randy Witt <randy.e.witt@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')
-rw-r--r--meta/lib/oeqa/selftest/lic-checksum.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/lic-checksum.py b/meta/lib/oeqa/selftest/lic-checksum.py
index 0c1afa6127..9a9f7b21a1 100644
--- a/meta/lib/oeqa/selftest/lic-checksum.py
+++ b/meta/lib/oeqa/selftest/lic-checksum.py
@@ -6,10 +6,10 @@ from oeqa.utils.commands import bitbake
6from oeqa.utils import CommandError 6from oeqa.utils import CommandError
7 7
8class LicenseTests(oeSelfTest): 8class LicenseTests(oeSelfTest):
9 9
10 # Verify that changing a license file that has an absolute path causes 10 # Verify that changing a license file that has an absolute path causes
11 # the license qa to fail due to a mismatched md5sum. 11 # the license qa to fail due to a mismatched md5sum.
12 def test_foo(self): 12 def test_nonmatching_checksum(self):
13 bitbake_cmd = '-c configure emptytest' 13 bitbake_cmd = '-c configure emptytest'
14 error_msg = 'ERROR: emptytest: The new md5 checksum is 8d777f385d3dfec8815d20f7496026dc' 14 error_msg = 'ERROR: emptytest: The new md5 checksum is 8d777f385d3dfec8815d20f7496026dc'
15 15