diff options
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/sdk/buildtools-docs-cases/README | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/sdk/buildtools-docs-cases/build.py | 17 |
2 files changed, 19 insertions, 0 deletions
diff --git a/meta/lib/oeqa/sdk/buildtools-docs-cases/README b/meta/lib/oeqa/sdk/buildtools-docs-cases/README new file mode 100644 index 0000000000..f8edbc7dad --- /dev/null +++ b/meta/lib/oeqa/sdk/buildtools-docs-cases/README | |||
@@ -0,0 +1,2 @@ | |||
1 | These test cases are used by build-docs-tarball, and are not used by the testsdk | ||
2 | class. | ||
diff --git a/meta/lib/oeqa/sdk/buildtools-docs-cases/build.py b/meta/lib/oeqa/sdk/buildtools-docs-cases/build.py new file mode 100644 index 0000000000..5b0eca046f --- /dev/null +++ b/meta/lib/oeqa/sdk/buildtools-docs-cases/build.py | |||
@@ -0,0 +1,17 @@ | |||
1 | # | ||
2 | # SPDX-License-Identifier: MIT | ||
3 | # | ||
4 | |||
5 | import tempfile | ||
6 | from oeqa.sdk.case import OESDKTestCase | ||
7 | from oeqa.utils.subprocesstweak import errors_have_output | ||
8 | errors_have_output() | ||
9 | |||
10 | class BuildTests(OESDKTestCase): | ||
11 | """ | ||
12 | Verify that our docs can build using our docs tools tarball. | ||
13 | """ | ||
14 | def test_docs_build(self): | ||
15 | with tempfile.TemporaryDirectory(prefix='docs-tarball-build-', dir=self.tc.sdk_dir) as testdir: | ||
16 | self._run('git clone git://git.yoctoproject.org/yocto-docs %s' % testdir) | ||
17 | self._run('cd %s/documentation && make html' % testdir) | ||