mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Since bitbake commit 81a58647b2f4fc0a2589b2978fc9d81b2bfe6aec [bitbake: build: Make python output print to stdout when running with -v (verbose)] we no longer need to comment out the python stdout checks. (From OE-Core rev: 67886a8473c511c8ab3db2e4587cc5a070979d11) Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
183 lines
8.7 KiB
Python
183 lines
8.7 KiB
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
|
|
from oeqa.selftest.case import OESelftestTestCase
|
|
from oeqa.utils.commands import bitbake
|
|
|
|
class BitBakeLogging(OESelftestTestCase):
|
|
|
|
def assertCount(self, item, entry, count):
|
|
self.assertEqual(item.count(entry), count, msg="Output:\n'''\n%s\n'''\ndoesn't contain %d copies of:\n'''\n%s\n'''\n" % (item, count, entry))
|
|
|
|
def test_shell_loggingA(self):
|
|
# no logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c shelltest -f", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertNotIn("This is shell stdout", result.output)
|
|
self.assertNotIn("This is shell stderr", result.output)
|
|
|
|
def test_shell_loggingB(self):
|
|
# logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c shelltest -f", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is shell stdout", 1)
|
|
self.assertCount(result.output, "This is shell stderr", 1)
|
|
|
|
def test_shell_loggingC(self):
|
|
# no logs, verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c shelltest -f -v", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
# two copies due to set +x
|
|
self.assertCount(result.output, "This is shell stdout", 2)
|
|
self.assertCount(result.output, "This is shell stderr", 2)
|
|
|
|
def test_shell_loggingD(self):
|
|
# logs, verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c shelltest -f -v", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
# two copies due to set +x
|
|
self.assertCount(result.output, "This is shell stdout", 2)
|
|
self.assertCount(result.output, "This is shell stderr", 2)
|
|
|
|
def test_python_exec_func_shell_loggingA(self):
|
|
# no logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_exec_func_shell -f",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertNotIn("This is shell stdout", result.output)
|
|
self.assertNotIn("This is shell stderr", result.output)
|
|
|
|
def test_python_exec_func_shell_loggingB(self):
|
|
# logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_exec_func_shell -f",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is shell stdout", 1)
|
|
self.assertCount(result.output, "This is shell stderr", 1)
|
|
|
|
def test_python_exec_func_shell_loggingC(self):
|
|
# no logs, verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_exec_func_shell -f -v",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
# two copies due to set +x
|
|
self.assertCount(result.output, "This is shell stdout", 2)
|
|
self.assertCount(result.output, "This is shell stderr", 2)
|
|
|
|
def test_python_exec_func_shell_loggingD(self):
|
|
# logs, verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_exec_func_shell -f -v",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
# two copies due to set +x
|
|
self.assertCount(result.output, "This is shell stdout", 2)
|
|
self.assertCount(result.output, "This is shell stderr", 2)
|
|
|
|
def test_python_exit_loggingA(self):
|
|
# no logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_exit -f", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertNotIn("This is python stdout", result.output)
|
|
|
|
def test_python_exit_loggingB(self):
|
|
# logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_exit -f", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
# A sys.exit() should include the output
|
|
self.assertCount(result.output, "This is python stdout", 1)
|
|
|
|
def test_python_exit_loggingC(self):
|
|
# no logs, verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_exit -f -v", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is python stdout", 1)
|
|
|
|
def test_python_exit_loggingD(self):
|
|
# logs, verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_exit -f -v", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is python stdout", 1)
|
|
|
|
def test_python_exec_func_python_loggingA(self):
|
|
# no logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_exec_func_python -f",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertNotIn("This is python stdout", result.output)
|
|
|
|
def test_python_exec_func_python_loggingB(self):
|
|
# logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_exec_func_python -f",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
# A sys.exit() should include the output
|
|
self.assertCount(result.output, "This is python stdout", 1)
|
|
|
|
def test_python_exec_func_python_loggingC(self):
|
|
# no logs, verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_exec_func_python -f -v",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is python stdout", 1)
|
|
|
|
def test_python_exec_func_python_loggingD(self):
|
|
# logs, verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_exec_func_python -f -v",
|
|
ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is python stdout", 1)
|
|
|
|
def test_python_fatal_loggingA(self):
|
|
# no logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_fatal -f", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertNotIn("This is python fatal test stdout", result.output)
|
|
self.assertCount(result.output, "This is a fatal error", 1)
|
|
|
|
def test_python_fatal_loggingB(self):
|
|
# logs, no verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_fatal -f", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
# A bb.fatal() should not include the output
|
|
self.assertNotIn("This is python fatal test stdout", result.output)
|
|
self.assertCount(result.output, "This is a fatal error", 1)
|
|
|
|
def test_python_fatal_loggingC(self):
|
|
# no logs, verbose
|
|
self.write_config('BBINCLUDELOGS = ""')
|
|
result = bitbake("logging-test -c pythontest_fatal -f -v", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is python fatal test stdout", 1)
|
|
self.assertCount(result.output, "This is a fatal error", 1)
|
|
|
|
def test_python_fatal_loggingD(self):
|
|
# logs, verbose
|
|
self.write_config('BBINCLUDELOGS = "yes"')
|
|
result = bitbake("logging-test -c pythontest_fatal -f -v", ignore_status = True)
|
|
self.assertIn("ERROR: Logfile of failure stored in:", result.output)
|
|
self.assertCount(result.output, "This is python fatal test stdout", 1)
|
|
self.assertCount(result.output, "This is a fatal error", 1)
|
|
|