summaryrefslogtreecommitdiffstats
path: root/documentation/test-manual/intro.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/test-manual/intro.rst')
-rw-r--r--documentation/test-manual/intro.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/test-manual/intro.rst b/documentation/test-manual/intro.rst
index 9c1a93cd40..17cde316b3 100644
--- a/documentation/test-manual/intro.rst
+++ b/documentation/test-manual/intro.rst
@@ -72,7 +72,7 @@ simple JSON files.
72.. note:: 72.. note::
73 73
74 The project uses Buildbot for historical reasons but also because 74 The project uses Buildbot for historical reasons but also because
75 many of the project developers have knowledge of python. It is 75 many of the project developers have knowledge of Python. It is
76 possible to use the outer layers from another Continuous Integration 76 possible to use the outer layers from another Continuous Integration
77 (CI) system such as 77 (CI) system such as
78 `Jenkins <https://en.wikipedia.org/wiki/Jenkins_(software)>`__ 78 `Jenkins <https://en.wikipedia.org/wiki/Jenkins_(software)>`__
@@ -335,12 +335,12 @@ A simple test example from ``lib/bb/tests/data.py`` is::
335 self.assertEqual(str(val), "value_of_foo") 335 self.assertEqual(str(val), "value_of_foo")
336 336
337In this example, a ``DataExpansions`` class of tests is created, 337In this example, a ``DataExpansions`` class of tests is created,
338derived from standard python unittest. The class has a common ``setUp`` 338derived from standard Python unittest. The class has a common ``setUp``
339function which is shared by all the tests in the class. A simple test is 339function which is shared by all the tests in the class. A simple test is
340then added to test that when a variable is expanded, the correct value 340then added to test that when a variable is expanded, the correct value
341is found. 341is found.
342 342
343Bitbake selftests are straightforward python unittest. Refer to the 343BitBake selftests are straightforward Python unittest. Refer to the
344Python unittest documentation for additional information on writing 344Python unittest documentation for additional information on writing
345these tests at: https://docs.python.org/3/library/unittest.html. 345these tests at: https://docs.python.org/3/library/unittest.html.
346 346
@@ -468,7 +468,7 @@ following::
468 468
469In this example, if nativesdk-python3-core has been installed into the SDK, the code runs 469In this example, if nativesdk-python3-core has been installed into the SDK, the code runs
470the python3 interpreter with a basic command to check it is working 470the python3 interpreter with a basic command to check it is working
471correctly. The test would only run if python3 is installed in the SDK. 471correctly. The test would only run if Python3 is installed in the SDK.
472 472
473``oe-build-perf-test`` 473``oe-build-perf-test``
474---------------------- 474----------------------