diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2019-01-10 15:49:49 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-25 22:27:45 +0000 |
| commit | e8b9772ab83e432f3fab2be61d2b39f2c0bac0b9 (patch) | |
| tree | 92609e6a02e942be3da279de2467622fe7283974 /meta/lib/oeqa/runtime | |
| parent | 75bcf06098905a30aac56865c276780fee92a32b (diff) | |
| download | poky-e8b9772ab83e432f3fab2be61d2b39f2c0bac0b9.tar.gz | |
oeqa: make it work for multiple users
There are failures when multiple users run oe-selftest on the same
host:
PermissionError: [Errno 13] Permission denied: '/tmp/oe-saved-
tests/201812250324_qemu'
This is because /tmp/oe-saved-tests was created by user A, while user B tries
to write data in it, then the error will happen. This patch can fix the
problem.
Move the dumped data to ${LOG_DIR}/runtime-hostdump/ rather than
/tmp/oe-saved-tests/ to fix the problem.
(From OE-Core rev: e219fe5329599cd6c3682f521eaee3852a2c8980)
(From OE-Core rev: 872c6e5101f4f27dcfc63d141d1b6568f46d2b5f)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
| -rw-r--r-- | meta/lib/oeqa/runtime/context.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py index 0294003fc7..f3341b2e33 100644 --- a/meta/lib/oeqa/runtime/context.py +++ b/meta/lib/oeqa/runtime/context.py | |||
| @@ -49,7 +49,6 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): | |||
| 49 | default_manifest = 'data/manifest' | 49 | default_manifest = 'data/manifest' |
| 50 | default_server_ip = '192.168.7.1' | 50 | default_server_ip = '192.168.7.1' |
| 51 | default_target_ip = '192.168.7.2' | 51 | default_target_ip = '192.168.7.2' |
| 52 | default_host_dumper_dir = '/tmp/oe-saved-tests' | ||
| 53 | default_extract_dir = 'packages/extracted' | 52 | default_extract_dir = 'packages/extracted' |
| 54 | 53 | ||
| 55 | def register_commands(self, logger, subparsers): | 54 | def register_commands(self, logger, subparsers): |
| @@ -71,9 +70,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): | |||
| 71 | % self.default_server_ip) | 70 | % self.default_server_ip) |
| 72 | 71 | ||
| 73 | runtime_group.add_argument('--host-dumper-dir', action='store', | 72 | runtime_group.add_argument('--host-dumper-dir', action='store', |
| 74 | default=self.default_host_dumper_dir, | 73 | help="Directory where host status is dumped, if tests fails") |
| 75 | help="Directory where host status is dumped, if tests fails, default: %s" \ | ||
| 76 | % self.default_host_dumper_dir) | ||
| 77 | 74 | ||
| 78 | runtime_group.add_argument('--packages-manifest', action='store', | 75 | runtime_group.add_argument('--packages-manifest', action='store', |
| 79 | default=self.default_manifest, | 76 | default=self.default_manifest, |
