summaryrefslogtreecommitdiffstats
path: root/meta-oe/conf/include
Commit message (Collapse)AuthorAgeFilesLines
* reproducibility: move known non-repro list to layer.confYoann Congal2025-06-201-142/+0
| | | | | | | | | | | | | | | | | | | | | | The current include file that stores the known non-reproducible packages is layer dependent and that forces the user of the layers to maintain the list of the files (for example, see AB config[0]). By moving the exclude list to each layer.conf and extending the common OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES variable, the known non-reproducible packages will be automatically excluded for each layer used in the reproducibility test without any special knowledge in the test environment. NB: the empty list for meta-initramfs was just removed not moved. [0]: https://git.yoctoproject.org/yocto-autobuilder-helper/tree/config.json?id=7d8933e75bdf7fb821a25617cb2dcabf1f3f8700#n322 Suggested-by: Quentin Schulz <quentin.schulz@cherry.de> Co-Developed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> Signed-off-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* crash: fix reproducibilityKéléfa Sané2025-05-271-3/+0
| | | | | | | | | Fix reproducibility issue by retrieving the compiler version from the CC env variable, which define the compiler used in the build and not from the native gcc compiler install in the host machine. Signed-off-by: Kéléfa Sané <kelefa.sane@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: mark libbotan as known non-reproducibleYoann Congal2025-05-011-0/+1
| | | | | | | | | | | | | | | | | libbotan packages are not reproducible. Quick analysis: A path in /usr/lib/libbotan-3.so.7.7.1 changes: -/etc/ssl/ca-bundle.pem +/etc/ssl/certs/ca-certificates.crt Look like the trusted TLS CA store full path. This path most likely changes depending on host OS. Relevant logs: - https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/42/steps/32/logs/stdio - https://valkyrie.yocto.io/pub/repro-fail-openembedded/meta-oe/oe-reproducible-20250426-pazz3nt5/packages/diff-html/#reproducibleA-tmp---reproducibleA-tmp-deploy---reproducibleA-tmp-deploy-deb---reproducibleA-tmp-deploy-deb-core-------reproducibleA-tmp-deploy-deb-core-----libbotan----_-.-.--r-_amd--.deb Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: mark apitrace as known non-reproducibleYoann Congal2025-05-011-0/+2
| | | | | | | | | | | | | | | | | apitrace packages are not reproducible. Quick analysis: A string changes in /usr/bin/apitrace -/srv/pokybuild/yocto-worker/meta-oe/build/buildtools/sysroots/x86_64-pokysdk-linux/usr/bin/python3 +/srv/pokybuild/buildbot-venv/bin/python3 Looks like the full path of the python3 interpreter which changes from hosts to hosts. Relevant logs: - https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/42/steps/32/logs/stdio - https://valkyrie.yocto.io/pub/repro-fail-openembedded/meta-oe/oe-reproducible-20250426-pazz3nt5/packages/diff-html/#reproducibleA-tmp---reproducibleA-tmp-deploy---reproducibleA-tmp-deploy-deb---reproducibleA-tmp-deploy-deb-core-------reproducibleA-tmp-deploy-deb-core-----apitrace_--.----.--git------fc--bb-r-_amd--.deb Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: mark libsource-highlight as known non-reproducibleYoann Congal2025-05-011-0/+4
| | | | | | | | | | | | | | | | libsource-highlight packages are not reproducible. Quick analysis: A path in a generated file changes: /usr/include/srchilite/langdefparser.h: -#line·95·"../../../git/lib/srchilite/langdefparser.yy" +#line·95·"../../../lib/srchilite/langdefparser.yy" Relevant logs: - https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/41/steps/32/logs/stdio - https://valkyrie.yocto.io/pub/repro-fail-openembedded/meta-oe/oe-reproducible-20250419-ye3feamr/packages/diff-html/ Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: mark ipmiutil as known non-reproducibleYoann Congal2025-05-011-0/+3
| | | | | | | | | | | | | | | ipmiutil packages are not reproducible. Quick analysis: Depending whether build host OS is Debian or not, some files are present or not in packages. (e.g /usr/lib/libipmiutil.so.1 and others) Relevant logs: - https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/42/steps/32/logs/stdio - https://valkyrie.yocto.io/pub/repro-fail-openembedded/meta-oe/oe-reproducible-20250426-pazz3nt5/packages/diff-html/#reproducibleA-tmp---reproducibleA-tmp-deploy---reproducibleA-tmp-deploy-deb---reproducibleA-tmp-deploy-deb-core-------reproducibleA-tmp-deploy-deb-core-----ipmiutil-dbg_-.-.--r-_amd--.deb Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducilibility: remove cjson-ptest package from non reproducible listKéléfa Sané2025-04-241-1/+0
| | | | | | | | | | | | | | | The reproducibility issue has been fixed by the commit "cjson: fix buildpath warnings (0cc731540808d848c03c2e345c36904b83529266)" which replace the build path present in files: - CTestTestfile.cmake - tests/CTestTestfile.cmake - fuzzing/CTestTestfile.cmake by PTEST_PATH (/usr/lib/cjson/ptest). Signed-off-by: Kéléfa Sané <kelefa.sane@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Reproducilibility: Remove boinc-client-dev package from non reproducible listKéléfa Sané2025-04-191-1/+0
| | | | | | | | | | | | Last modification on boinc-client recipe (see commit "boinc-client: Fix contains reference to TMPDIR [buildpaths] warning" 3e38af7e8b0e5e22ab4159c2146ce95e0fa41a3f) fix the repoducibility issue, with a do_install:append task which remove the build path present in the header source file svn_version.h. Signed-off-by: Kéléfa Sané <kelefa.sane@smile.fr> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-oe: Move tests out or into problematic test listsKhem Raj2025-04-121-6/+7
| | | | | | This is based on current results Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: Remove OpenOCD from non reproducible listSofiane HAMAM2025-04-071-2/+0
| | | | | | | | | | OpenOCD non reproducible build has been fixed. See commit : 60d88818646dc418c3b505ea8b2e24c9a7e48ef0 Remove OpenOCD from the known non reproducibles. Signed-off-by: Sofiane HAMAM <sofiane.hamam@smile.fr> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* minizip-ng: Add ptest supportMingli Yu2025-04-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # ./run-ptest [==========] Running 55 tests from 6 test suites. [----------] Global test environment set-up. [----------] 22 tests from crypt PASS: crypt.rand PASS: crypt.sha1 PASS: crypt.sha224 PASS: crypt.sha256 PASS: crypt.sha384 PASS: crypt.sha512 PASS: crypt.aes128 PASS: crypt.aes128_cbc PASS: crypt.aes128_gcm PASS: crypt.aes194 PASS: crypt.aes256 PASS: crypt.hmac_sha1 PASS: crypt.hmac_sha1_short_password PASS: crypt.hmac_sha256 PASS: crypt.pbkdf2 PASS: crypt.pbkdf2_long_odd_password PASS: crypt.pbkdf2_short_password PASS: crypt.pbkdf2_rfc6070_v1 PASS: crypt.pbkdf2_rfc6070_v2 PASS: crypt.pbkdf2_rfc6070_v3 PASS: crypt.pbkdf2_rfc6070_v4 PASS: crypt.pbkdf2_rfc6070_v5 [----------] 1 test from os PASS: os.utf8_unicode_string [----------] 2 tests from encrypt PASS: encrypt.pkcrypt PASS: encrypt.aes [----------] 2 tests from stream bzip compressed from 877 to 505 bzip uncompressed from 505 to 877 PASS: stream.bzip lzma compressed from 877 to 526 lzma uncompressed from 526 to 877 PASS: stream.lzma [----------] 20 tests from os/path_resolve PASS: os/path_resolve.os/0 PASS: os/path_resolve.os/1 PASS: os/path_resolve.os/2 PASS: os/path_resolve.os/3 PASS: os/path_resolve.os/4 PASS: os/path_resolve.os/5 PASS: os/path_resolve.os/6 PASS: os/path_resolve.os/7 PASS: os/path_resolve.os/8 PASS: os/path_resolve.os/9 PASS: os/path_resolve.os/10 PASS: os/path_resolve.os/11 PASS: os/path_resolve.os/12 PASS: os/path_resolve.os/13 PASS: os/path_resolve.os/14 PASS: os/path_resolve.os/15 PASS: os/path_resolve.os/16 PASS: os/path_resolve.os/17 PASS: os/path_resolve.os/18 PASS: os/path_resolve.os/19 [----------] 8 tests from stream/stream_find PASS: stream/stream_find.find/0 PASS: stream/stream_find.find/1 PASS: stream/stream_find.find/2 PASS: stream/stream_find.find/3 PASS: stream/stream_find.find/4 PASS: stream/stream_find.find/5 PASS: stream/stream_find.find/6 PASS: stream/stream_find.find/7 [----------] Global test environment tear-down [==========] 55 tests from 6 test suites ran. [ PASSED ] 55 tests. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: Mark fsverity, libsdl2 packages as known non-reproducibleYoann Congal2025-03-151-0/+5
| | | | | | | | | | | From AB run: https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/36/steps/32/logs/stdio Diffoscope output is at: https://valkyrie.yocto.io/pub/repro-fail-openembedded/meta-oe/oe-reproducible-20250315-8_7ama2q/packages/diff-html/ Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: update known non-reproducible packagesYoann Congal2025-03-111-0/+30
| | | | | | | | | | | | Those reproducible failures are from AB runs: * https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/34 * https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/35 https://valkyrie.yocto.io/pub/repro-fail-openembedded/ NB: diffoscope output can be found in Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Fix variable assignment whitespaceRichard Purdie2025-01-311-1/+1
| | | | | | | | | | | | Recipes are much more readable with whitespace around the assignment operators. Fix various assignments in meta-openembedded recipes to show this is definitely the preferred formatting. This fixes recipes with larger numbers of issues but there are just under 100 other references left to fix. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs-115: remove recipeMarkus Volk2025-01-181-1/+0
| | | | | | | polkit was the only consumer and switched to ducktape Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* hplip: Address reproducibility issuesDan McGregor2024-11-191-2/+0
| | | | | | | | | | | | The distributed configure script removes the existing CFLAGS if it finds python3. Correct this, so that our prefix mapping flags and other OpenEmbedded flags get applied. This patch was acquired from the comments in https://bugs.launchpad.net/hplip/+bug/1879445 Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc: Add tomlplusplusMingli Yu2024-10-171-0/+1
| | | | | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc: Add libtoml11Mingli Yu2024-10-121-0/+1
| | | | | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc: Add asioMingli Yu2024-10-101-0/+1
| | | | | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Add fuse3 to fast ptestsKhem Raj2024-10-041-0/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pefile: Remove recipeKhem Raj2024-09-301-1/+0
| | | | | | It has been moved to core layer Signed-off-by: Khem Raj <raj.khem@gmail.com>
* rocksdb: Add ptest supportMingli Yu2024-09-291-0/+1
| | | | | | | | | | | | # ./run-ptest PASS: agg_merge_test PASS: cache_test PASS: db_basic_test PASS: env_basic_test PASS: testutil_test Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pegtl: add ptest supportAlexandre Truong2024-08-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Test added to the fast-list. Result of ptest-runner: root@qemux86-64:~# ptest-runner pegtl START: ptest-runner 2024-08-29T13:57 BEGIN: /usr/lib/pegtl/ptest PASS: src/test/pegtl/pegtl-test-action_enable PASS: src/test/pegtl/pegtl-test-action_match PASS: src/test/pegtl/pegtl-test-actions_one [...] PASS: src/test/pegtl/pegtl-test-utf8_general PASS: src/test/pegtl/pegtl-test-visit PASS: All 128 tests passed DURATION: 4 END: /usr/lib/pegtl/ptest 2024-08-29T13:57 STOP: ptest-runner TOTAL: 1 FAIL: 0 NB: two tests are being skipped with a exception raised as support is disabled Exception support disabled, skipping test... PASS: src/test/pegtl/pegtl-test-internal_file_mapper Exception support disabled, skipping test... PASS: src/test/pegtl/pegtl-test-internal_file_opener Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libee: remove recipe since libee is obsoleteRandy MacLeod2024-06-271-1/+0
| | | | | | | | | | | | | | | | | libee had been used by rsyslog but the library never relly panned out. It has been declared to be obsolete: Early versions of rsyslog and liblognorm used it for representing structured content. However, this is long gone. We do not know of any other user. So libee should be of no further interest and is provided here solely for historical reasons. https://github.com/rsyslog/libee Also remove references to libee in: meta-oe/conf/include/ptest-packagelists-meta-oe.inc meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pefile: Move from meta-python to meta-oeKhem Raj2024-06-091-0/+1
| | | | | | | | - This recipe is needed by newer versions of fwupd from meta-oe - Add ptest support for python3-pefile - Add python3-pefile to PTESTS_FAST_META_OE since tests take < 30s Signed-off-by: Khem Raj <raj.khem@gmail.com>
* reproducibility: move repro excludes from AB config.json to meta-oeYoann Congal2024-04-291-0/+107
| | | | | | | | | | | | | | For now, the known non-reproducible packages list is stored inside the autobuilder config.json file. This is not ideal. Let's move this list into each layers of meta-openembedded. These lists can be used with, in local.conf: include conf/include/non-repro-meta-oe.inc OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES = "${KNOWN_NON_REPRO_META_OE}" Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Acked-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pv: Fix ptest failuresKhem Raj2024-04-121-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: jemalloc and oprofile are passing nowKhem Raj2024-04-111-7/+4
| | | | | | Move them into PTESTS_FAST_META_OE Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxml++: Delete recipe for 2.42.1Khem Raj2024-04-111-1/+0
| | | | | | | | We already have libxml++-5 provided and some of the dependencies for libxml++ (older version of glibmm) are not available. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* microsoft-gsl: add new recipe including ptestPeter Marko2024-03-271-0/+1
| | | | | | | | | | The Guidelines Support Library (GSL) contains functions and types that are suggested for use by the C++ Core Guidelines maintained by the Standard C++ Foundation. This repo contains Microsoft's implementation of GSL. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fmt: remove unnecessary "inherit ptest" directiveRobert P. J. Day2024-03-101-1/+0
| | | | | | | | Given that the recipe does not provide the standard ptest infrastructure, remove the superfluous inherit of ptest. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Move libgpiod out of PTESTS_PROBLEMS_META_OEKhem Raj2024-03-051-1/+1
| | | | | | It works fine now Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc: Remove oprofile from PTESTS_PROBLEMS_META_OEKhem Raj2024-02-261-2/+2
| | | | | | Its not in PTESTS_FAST_META_OE Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Remove oprofile for rv32/rv64Khem Raj2024-02-221-0/+3
| | | | | | oprofile is not ported to riscv yet. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc Add c-ares to PTESTS_SLOW_META_OEAlex Kiernan2023-12-311-0/+1
| | | | | | | These take around 50s to run. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc: Move poco to slow testsKhem Raj2023-11-291-1/+1
| | | | | | | poco ptests take 7+ minutes on a kvm accelerated build system so it should actually be part of slow test list Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc: Add nlohmann-jsonMingli Yu2023-11-101-0/+1
| | | | | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* re2: Add ptest supportChi Xu2023-10-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Test results: root@qemux86-64:~# ptest-runner re2 -t 7200 START: ptest-runner 2023-10-16T08:36 BEGIN: /usr/lib/re2/ptest PASS: charclass_test PASS: compile_test PASS: filtered_re2_test PASS: mimics_pcre_test PASS: parse_test PASS: possible_match_test PASS: re2_test PASS: re2_arg_test PASS: regexp_test PASS: required_prefix_test PASS: search_test PASS: set_test PASS: simplify_test PASS: string_generator_test PASS: dfa_test PASS: exhaustive1_test PASS: exhaustive2_test PASS: exhaustive3_test PASS: exhaustive_test PASS: random_test DURATION: 2085 END: /usr/lib/re2/ptest 2023-10-16T09:11 STOP: ptest-runner TOTAL: 1 FAIL: 0 And add re2 ptest to PTESTS_SLOW_META_OE. Signed-off-by: Chi Xu <chi.xu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cjson: Add ptestDavid Pierret2023-10-171-0/+1
| | | | | | | | | | | | cjson use pure CMake test framework named CTest. CMake generate CTestTestfile.cmake containing fully defined path. This path need to be altered on install step to match the ptest directory. The json_patch_tests doesn't works because of file access and is skip. Signed-off-by: David Pierret <david.pierret@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Add kernel-selftest to x86/x86-64 imagesKhem Raj2023-10-091-1/+3
| | | | | | Test run for 10+ minutes so they belong to slow testset Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxmlb: remove recipeMarkus Volk2023-09-201-1/+0
| | | | | | | It was moved to oe-core Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mariadb: Add ptest supportChi Xu2023-09-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 69 test cases in all, and all of them are PASS. Test results: root@intel-x86-64:~# ptest-runner mariadb START: ptest-runner 2023-09-17T05:38 BEGIN: /usr/lib/mariadb/ptest PASS: strings PASS: json PASS: simple PASS: skip PASS: todo PASS: skip_all PASS: no_plan PASS: bitmap PASS: base64 PASS: my_atomic PASS: my_rdtsc PASS: lf PASS: my_malloc PASS: my_getopt PASS: dynstring PASS: byte_order PASS: queues PASS: stacktrace PASS: crc32 PASS: my_vsnprintf PASS: aes PASS: ma_dyncol PASS: my_decimal PASS: json_lib PASS: json_normalize PASS: my_apc PASS: explain_filename PASS: mf_iocache PASS: my_json_writer PASS: innodb_fts PASS: innodb_sync PASS: ma_control_file PASS: trnman PASS: ma_test_loghandler PASS: ma_test_loghandler_multigroup PASS: ma_test_loghandler_multithread PASS: ma_test_loghandler_pagecache PASS: ma_test_loghandler_long PASS: ma_test_loghandler_noflush PASS: ma_test_loghandler_first_lsn PASS: ma_test_loghandler_max_lsn PASS: ma_test_loghandler_purge PASS: ma_test_loghandler_readonly PASS: ma_test_loghandler_nologs PASS: ma_pagecache_single_1k PASS: ma_pagecache_single_8k PASS: ma_pagecache_single_64k PASS: ma_pagecache_consist_1k PASS: ma_pagecache_consist_64k PASS: ma_pagecache_consist_1kHC PASS: ma_pagecache_consist_64kHC PASS: ma_pagecache_consist_1kRD PASS: ma_pagecache_consist_64kRD PASS: ma_pagecache_consist_1kWR PASS: ma_pagecache_consist_64kWR PASS: ma_pagecache_rwconsist_1k PASS: ma_pagecache_rwconsist2_1k PASS: pfs_instr_class PASS: pfs_instr_class-oom PASS: pfs_instr PASS: pfs_instr-oom PASS: pfs_account-oom PASS: pfs_host-oom PASS: pfs_timer PASS: pfs_user-oom PASS: pfs_noop PASS: pfs PASS: pfs_misc PASS: dbug DURATION: 59 END: /usr/lib/mariadb/ptest 2023-09-17T05:39 STOP: ptest-runner TOTAL: 1 FAIL: 0 Signed-off-by: Chi Xu <chi.xu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* librelp: Add to meta-oe ptest imageKhem Raj2023-08-191-0/+1
| | | | | | | | it takes ~35s so lets add it to auto ptests RESULTS - ptest.PtestRunnerTest.test_ptestrunner_expectfail: PASSED (34.93s) Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Limit mcelog to x86/x86_64Khem Raj2023-07-131-1/+3
| | | | | | mcelog is only available on x86 and x86_64 architectures. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-oe-ptests: Add mcelog to PTESTS_FAST_META_OEKhem Raj2023-05-231-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Remove nodejs ptests for rv32/rv64Khem Raj2023-05-181-0/+2
| | | | | | Nodejs in OE not yet ported to RISCV Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Add libtinyxml2Khem Raj2023-04-061-0/+1
| | | | | | It takes < 4 seconds on qemux86_64 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe: Remove minicoredumper from PTESTS_FAST_META_OE ↵Khem Raj2023-04-041-0/+1
| | | | | | | | on musl minicoredumper is not buildable on musl Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-oe.inc: add ptest recipesTim Orling2023-04-021-0/+60
Similar to ptest-packagelists.inc in oe-core, this list enables per image ptest (isolated ptests for a given recipe) * Add recipes to PTEST_FAST_META_OE for ptests which take less than ~30s * Add recipes to PTEST_SLOW_META_OE for ptests which take longer * Add recipes to PTEST_PROBLEMS_META_OE for ptests which have failing tests or other issues with ptest package The initial list was taken from: meta_oe_ptest_recipes=$(bitbake-layers show-recipes --recipes-only \ --layer meta-oe --inherits ptest --bare | tr '\n' ' ' | \ pcregrep -o1 '^NOTE:.+===(.+)$') Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>