diff options
author | Qiu Tingting <qiutt@fujitsu.com> | 2023-04-06 10:23:30 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-05-02 10:25:40 +0100 |
commit | 9ca04fc169d512579238fff4ba337dcc23e42af4 (patch) | |
tree | 6f82795afb0df53b65acf87b4b05e81a79ce3a28 /meta/conf/distro | |
parent | 768c89e306d0486acf8bc76cecef90436f6551b3 (diff) | |
download | poky-9ca04fc169d512579238fff4ba337dcc23e42af4.tar.gz |
lz4: Add ptest support
Add a ptest for lz4.
- It is taking around 9 min to execute with kvm, so added it to PTEST_SLOW.
- It contains one case: test_frame.
- Below is the run log:
START: ptest-runner
2023-04-06T00:36
BEGIN: /usr/lib/lz4/ptest
Starting lz4frame tester (64-bits, 1.9.4)
Seed = 7314
Basic tests completed
All tests completed
PASS: lz4/test_frame
DURATION: 573
END: /usr/lib/lz4/ptest
2023-04-06T00:45
STOP: ptest-runner
TOTAL: 1 FAIL: 0
(From OE-Core rev: 2ee144a0bfb88823bfa788697bb7afc9a572c413)
Signed-off-by: Qiu Tingting <qiutt@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/distro')
-rw-r--r-- | meta/conf/distro/include/ptest-packagelists.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/conf/distro/include/ptest-packagelists.inc b/meta/conf/distro/include/ptest-packagelists.inc index 78750a0d98..2f83132aeb 100644 --- a/meta/conf/distro/include/ptest-packagelists.inc +++ b/meta/conf/distro/include/ptest-packagelists.inc | |||
@@ -106,6 +106,7 @@ PTESTS_SLOW = "\ | |||
106 | tcl \ | 106 | tcl \ |
107 | util-linux \ | 107 | util-linux \ |
108 | valgrind \ | 108 | valgrind \ |
109 | lz4 \ | ||
109 | " | 110 | " |
110 | 111 | ||
111 | PTESTS_SLOW:remove:riscv64 = "valgrind" | 112 | PTESTS_SLOW:remove:riscv64 = "valgrind" |
@@ -115,7 +116,6 @@ PTESTS_SLOW:remove:x86 = "valgrind" | |||
115 | PTESTS_PROBLEMS:append:x86 = " valgrind" | 116 | PTESTS_PROBLEMS:append:x86 = " valgrind" |
116 | 117 | ||
117 | # ruby \ # Timeout | 118 | # ruby \ # Timeout |
118 | # lz4 \ # Needs a rewrite | ||
119 | # rt-tests \ # Needs to be checked whether it runs at all | 119 | # rt-tests \ # Needs to be checked whether it runs at all |
120 | # bash \ # Test outcomes are non-deterministic by design | 120 | # bash \ # Test outcomes are non-deterministic by design |
121 | # ifupdown \ # Tested separately in lib/oeqa/selftest/cases/imagefeatures.py | 121 | # ifupdown \ # Tested separately in lib/oeqa/selftest/cases/imagefeatures.py |
@@ -128,7 +128,6 @@ PTESTS_PROBLEMS:append:x86 = " valgrind" | |||
128 | 128 | ||
129 | PTESTS_PROBLEMS = "\ | 129 | PTESTS_PROBLEMS = "\ |
130 | ruby \ | 130 | ruby \ |
131 | lz4 \ | ||
132 | rt-tests \ | 131 | rt-tests \ |
133 | bash \ | 132 | bash \ |
134 | ifupdown \ | 133 | ifupdown \ |