summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-test
Commit message (Collapse)AuthorAgeFilesLines
* linux-serial-test: Bump SRCREV to allow CMake 4+ compatibilityAlper Ak12 days1-2/+1
| | | | | | | | | | | | | | | | | | | Fix: | CMake Error at CMakeLists.txt:4 (cmake_minimum_required): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cpputest: Backport patches to support builds with CMake 4+Moritz Haase12 days3-1/+83
| | | | | | | There hasn't been a new upstream release yet that ships the required changes. Signed-off-by: Moritz Haase <Moritz.Haase@bmw.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-openembedded/all: adapt to UNPACKDIR changesAlexander Kanavin2025-06-2515-16/+2
| | | | | | | | | | | | | Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bats: upgrade 1.11.1 -> 1.12.0Wang Mingyu2025-06-091-2/+2
| | | | | | | | | | | | | | | | | Changelog: =========== - bats::on_failure hook that gets called when a test or setup* function fails - increase compatibility with Solaris - fix noclobber breaking bats-gather-tests - fix exiting with 0 despite bats:focus when all tests have been filtered out - remove deprecated ubuntu 20.04 from CI config - Fix hyperlink to external Bash resource - Remove mentions to no longer existing find_library_load_path in - lib/bats-core docstrings - Add missing "status" word in --returned-status documentation Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* catch2: upgrade 3.8.0 -> 3.8.1Yi Zhao2025-04-151-1/+1
| | | | | | | | ChangeLog: https://github.com/catchorg/Catch2/releases/tag/v3.8.1 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pm-qa: fix build with gcc-15.0.1mark.yang2025-04-022-1/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix following error: http://errors.yoctoproject.org/Errors/Details/850314 utils/uevent_reader.c: In function 'main': utils/uevent_reader.c:33:24: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types] 33 | signal(SIGINT, exit_handler); | ^~~~~~~~~~~~ | | | void (*)(void) In file included from utils/uevent_reader.c:4: TOPDIR/tmp/work/core2-64-oe-linux/pm-qa/0.5.2/recipe-sysroot/usr/include/signal.h:88:57: note: expected '__sighandler_t' {aka 'void (*)(int)'} but argument is of type 'void (*)(void)' 88 | extern __sighandler_t signal (int __sig, __sighandler_t __handler) | ~~~~~~~~~~~~~~~^~~~~~~~~ utils/uevent_reader.c:15:6: note: 'exit_handler' declared here 15 | void exit_handler() | ^~~~~~~~~~~~ TOPDIR/tmp/work/core2-64-oe-linux/pm-qa/0.5.2/recipe-sysroot/usr/include/signal.h:72:16: note: '__sighandler_t' declared here 72 | typedef void (*__sighandler_t) (int); | ^~~~~~~~~~~~~~ make: *** [<builtin>: utils/uevent_reader] Error 1 Set PATCHTOOL to git because this recipe compiles all .c files including those in .pc/ directory which causes build errors. .pc/0001-fix-build-with-gcc-15-Wincompatible-pointer-types-er.patch/utils/uevent_reader.c:15:6: note: 'exit_handler' declared here 15 | void exit_handler() Signed-off-by: mark.yang <mark.yang@lge.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googletest: fix build with gcc-15Martin Jansa2025-03-212-1/+29
| | | | | | | | | | | | | | * some recipes which use googletest fail with: gtest/src/gtest_main.cc:32: recipe-sysroot/usr/include/c++/15.0.1/ciso646:46:4: error: #warning "<ciso646> is deprecated in C++17, use <version> to detect implementation-specific macros" [-Werror=cpp] 46 | # warning "<ciso646> is deprecated in C++17, use <version> to detect implementation-specific macros" | ^~~~~~~ backport a fix for this. * see https://github.com/google/googletest/issues/4701 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Fix variable assignment whitespaceRichard Purdie2025-03-202-3/+3
| | | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* catch2: upgrade 3.7.1 -> 3.8.0Yi Zhao2025-03-101-1/+1
| | | | | | | | ChangeLog: https://github.com/catchorg/Catch2/releases/tag/v3.8.0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googletest: upgrade 1.15.2.bb -> 1.16.0Yi Zhao2025-02-241-2/+2
| | | | | | | | Release Notes https://github.com/google/googletest/releases/tag/v1.16.0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* syzkaller: network in compile is not neededRoss Burton2024-12-101-4/+0
| | | | | | | | There appears to be no more network access in the compile task, so we can remove the flag. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bats: upgrade 1.11.0 -> 1.11.1Wang Mingyu2024-12-031-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Drop unnecessary SRC_URI md5sum from the recipes in meta-oe.J. S.2024-11-053-3/+0
| | | | | Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* catch2: upgrade 3.7.0 -> 3.7.1Yi Zhao2024-09-291-1/+2
| | | | | | | | ChangeLog: https://github.com/catchorg/Catch2/releases/tag/v3.7.1 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* catch2: upgrade 3.6.0 -> 3.7.0Yi Zhao2024-09-161-1/+1
| | | | | | | | ChangeLog: https://github.com/catchorg/Catch2/releases/tag/v3.7.0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googletest: upgrade 1.14.0 -> 1.15.2Wang Mingyu2024-08-091-2/+2
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* syzkaller: Add UPSTREAM_CHECK_COMMITSYoann Congal2024-08-091-0/+3
| | | | | | | | | Upstream repo does not tag so, use UPSTREAM_CHECK_COMMITS to detect upstream updates. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Alexandre Truong <alexandre.truong@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* linux-serial-test: include UPSTREAM_CHECK_COMMITS to fix UNKNOWN_BROKEN statusAlexandre Truong2024-08-091-0/+3
| | | | | | | | | | When performing devtool check-upgrade-status, UNKNOWN_BROKEN status appears. On the upstream source repository, releases are not identified by tags. So, UPSTREAM_CHECK_COMMITS is set to 1, to find the latest upstream update. 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>
* fb-test: include UPSTREAM_CHECK_COMMITS to fix UNKNOWN_BROKEN statusAlexandre Truong2024-08-091-0/+3
| | | | | | | | | | When performing devtool check-upgrade-status, UNKNOWN_BROKEN status appears. On the upstream source repository, releases are not identified by tags. So, UPSTREAM_CHECK_COMMITS is set to 1, to find the latest upstream update. 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>
* testfloat: update UPSTREAM_CHECK_* variables to fix devtool upgradesYoann Congal2024-07-241-0/+2
| | | | | | | | Update UPSTREAM_CHECK_* variables to fix UNKNOWN_BROKEN status with devtool check-upgrade-status. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Reviewed-by: Alexandre Truong <alexandre.truong@smile.fr>
* cxxtest: include UPSTREAM_CHECK_URI to fix UNKNOWN_BROKEN statusAlexandre Truong2024-07-241-0/+2
| | | | | | | | | | | Adding UPSTREAM_CHECK_URI fix UNKNOWN_BROKEN status from running devtool check-upgrade-status. The next version of the package can be found from upstream sources. Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
* trompeloeil: new recipeSven Fischer2024-06-141-0/+15
| | | | | | A thread-safe header-only mocking framework for C++11/14 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* catch2: Upgrade to 3.x release seriesKhem Raj2024-06-111-2/+2
| | | | | | | It supports C++20 better and newer compilers e.g. clang19 works better with 3.x series. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: upgrade 0.6.2 -> 0.7.0Enguerrand de Ribaucourt2024-06-071-4/+3
| | | | | | | | | | | | | | | | | | | Changes: cukinia: Add user is member of groups function cukinia: correct _ver2int output format cukinia: filter junitxml output to only include valid xml 1.0 chars cukinia: Add network interface functions cukinia: correct log_suite file name cukinia: differentiate cukinia_gpio_* tests cukinia_i2c: check driver add when/unless cukinia: fix bashism in result comparison Change license to Apache-2.0 only GPL-3.0-only license has been removed intentionally (see changelog). Signed-off-by: Enguerrand de Ribaucourt <enguerrand.de-ribaucourt@savoirfairelinux.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Switch away from S = WORKDIRKhem Raj2024-05-231-1/+2
| | | | | | Make it dependent on UNPACKDIR instead Signed-off-by: Khem Raj <raj.khem@gmail.com>
* syzkaller: Fix build with musl + gcc14Khem Raj2024-05-232-0/+30
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove obsolete PIP_INSTALL_PACKAGE and PIP_INSTALL_DIST_PATHalperak2024-03-091-2/+0
| | | | | | | All downloaded files and sstates for the recipes were cleaned, build was got from stratch and no errors were encoutered. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googletest: allow for shared librariesJoe Slater2024-03-081-2/+4
| | | | | | | | Change the -dev RDEPENDS because -staticdev is not created if shared libraries are built. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googletest: Pass -fPIC to CFLAGSMingli Yu2024-03-081-0/+1
| | | | | | | | | | | | | Fail to build re2 which depends on googletest as below: /build/tmp-glibc/work/core2-64-wrs-linux/re2/2024.03.01/recipe-sysroot-native/usr/bin/x86_64-wrs-linux/../../libexec/x86_64-wrs-linux/gcc/x86_64-wrs-linux/13.2.0/ld: /build/tmp-glibc/work/core2-64-wrs-linux/re2/2024.03.01/recipe-sysroot/usr/lib64/libgtest.a(gtest-all.cc.o): warning: relocation against `_ZTVN7testing8internal11MatcherBaseINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEE' in read-only section `.text._ZN7testing8internal11MatcherBaseINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED0Ev[_ZN7testing8internal11MatcherBaseINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED5Ev]' /build/tmp-glibc/work/core2-64-wrs-linux/re2/2024.03.01/recipe-sysroot-native/usr/bin/x86_64-wrs-linux/../../libexec/x86_64-wrs-linux/gcc/x86_64-wrs-linux/13.2.0/ld: /build/tmp-glibc/work/core2-64-wrs-linux/re2/2024.03.01/recipe-sysroot/usr/lib64/libgtest.a(gtest-all.cc.o): relocation R_X86_64_PC32 against symbol `_ZTVN7testing8internal17TestEventRepeaterE' can not be used when making a shared object; recompile with -fPIC /build/tmp-glibc/work/core2-64-wrs-linux/re2/2024.03.01/recipe-sysroot-native/usr/bin/x86_64-wrs-linux/../../libexec/x86_64-wrs-linux/gcc/x86_64-wrs-linux/13.2.0/ld: final link failed: bad value collect2: error: ld returned 1 exit status So pass -fPIC to fix the above issue. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bats: upgrade 1.10.0 -> 1.11.0Wang Mingyu2024-03-081-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googletest: allow for shared librariesJoe Slater2024-03-041-1/+7
| | | | | | | | | Add a PACKAGECONFIG option to produce shared libraries. Allow staticdev to be empty if no static libraries are built. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* syzkaller: Fix build with go 1.21Khem Raj2024-03-031-2/+10
| | | | | | | | - export GOPROXY - Fix clang-18 found errors by not forcing C++ compiler for CC but just passing c++ std library to link with Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: drop ${SRCPV} usageMartin Jansa2024-02-092-2/+2
| | | | | | | | | | * Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* cmocka: Fix install conflict when enable multilib.Wang Mingyu2024-02-011-11/+10
| | | | | | | | | | Error: Transaction test error: file /usr/share/cmocka/example/mock/libproc_uptime.so conflicts between attempted installs of lib32-libcmocka-examples-1.1.7+git0+a01cc69ee9-r0.armv7ahf_neon and libcmocka-examples-1.1.7+git0+a01cc69ee9-r0.cortexa57 Change install directory from share to lib to resolve conflict. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* catch2: upgrade 2.13.7 -> 2.13.10alperak2023-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | v2.13.10: Fixes: -Fixed issue with catch_discover_tests when there is multiple of 256 tests (#2401, #2503) -Catch2-provided main and wmain are explicitly marked as __cdecl when compiled with MSVC (#2486, #2487) -Improved break-into-debugger behaviour for ARM Macs. It should now be possible to step execution after the break (#2422) -Replaced deprecated std::aligned_storage (#2419, #2420) v2.13.9: Fixes: -Fixed issue with -# (filename-as-tag) flag when __FILE__ expands into filename without directories (#2328, #2393) -Fixed CAPTURE macro not being variadic when disabled through CATCH_CONFIG_DISABLE (#2316, #2378) v2.13.8: Fixes: -Made Approx::operator() const (#2288) -Improved pkg-config files (#2284) -Fixed warning suppression leaking out of Catch2 when compiled with clang.exe (#2280) -The macro-generated names for things like TEST_CASE no longer create reserved identifiers (#2336) Improvements: -Clang-tidy should no longer warn about missing virtual dispatch in FilterGenerator's constructor (#2314) Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMarkus Fuchs2023-11-081-1/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Markus Fuchs <mklntf@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* shunit2: new recipeBartosz Golaszewski2023-11-031-0/+14
| | | | | | | | Add a recipe for shunit2 - a testing framework for command-line tools and shell scripts. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: Fix license fieldPhilip-Dylan Gleonec2023-10-041-1/+1
| | | | | | | | | The recipe currently indicates that the cukinia package is licensed under both GPLv3 AND Apache 2.0 licenses, but the upstream specifies using it under GPLv3 OR Apache 2.0 license, is user's choice. Signed-off-by: Philip-Dylan Gleonec <philip-dylan.gleonec@savoirfairelinux.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cukinia: drop allarchMartin Jansa2023-09-201-2/+0
| | | | | | | | | | | | | * it rdepends on TUNE_PKGARCH libgpiod-tools so it cannot be allarch (or cukinia->libgpiod-tools needs to be added to SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS) bitbake-diffsigs \ sstate-before/mako/all-webos-linux/cukinia/0.6.2.do_package_write_ipk.sigdata.630262028cb276fdac170d30a265aa72d4249f84a264e11ea676a5ab38f1cacc \ sstate-before/qemux86-64/all-webos-linux/cukinia/0.6.2.do_package_write_ipk.sigdata.5d193e43c71f1270d36075be6124bb70585bb682771cff644349c4a7ffd13605 Hash for task dependency libgpiod:do_packagedata changed from d3dffb55884b89470065c3eaf046563e2f306706400be396b022a470ceca1916 to 76e47aed399fdbd14db3c4b75ef2b83298322429f111175d4ca4f3f4c67eebf0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libfaketime: simplify packagingMartin Jansa2023-08-301-7/+2
| | | | | | | | | | | | | | * avoid dev-so QA issue * avoid separate package for the library, because the current "lib${PN}" has a bit ridiculous name in mulilib builds: lib32-liblib32-libfaketime * fixes: ERROR: lib32-libfaketime-0.9.10-r0 do_package_qa: QA Issue: non -dev/-dbg/nativesdk- package lib32-liblib32-libfaketime contains symlink .so '/usr/lib32/faketime/libfaketime.so' [dev-so] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libfaketime: Eanable LFS64 on muslKhem Raj2023-08-261-0/+2
| | | | | | | Musl has 64bit time_t inherently, ideally this library should be fixed for that but lets apply the musl aliasing solution for now. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libfaketime: Fix build with clangKhem Raj2023-08-262-3/+49
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libfaketime: add recipeTymoteusz Burak2023-08-261-0/+30
| | | | | | | | | | | | | | This commit adds the libfaketime library recipe, which provides time manipulation capabilities for testing and debugging purposes. libfaketime allows developers to modify the system time reported to applications, aiding in scenarios where accurate time emulation is required. I deleted the extra flags altogether as they seem to be only necessary for old versions of this project (0.9.6). CC: Khem Raj <raj.khem@gmail.com> Signed-off-by: Tymoteusz Burak <tymoteusz.burak@3mdeb.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* googletest: upgrade 1.13.0 -> 1.14.0Wang Mingyu2023-08-151-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remove unused AUTHOR variableMichael Opdenacker2023-08-033-3/+0
| | | | | | | | | No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bats: upgrade 1.9.0 -> 1.10.0Wang Mingyu2023-07-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== Added: ----------- add ${BATS_TEST_TAGS[@]} for querying the tags during a test (#705) print tags on failing tests (#705) test for negative arguments to --jobs (#693) add tests for --formatter cat (#710) test coverage in CI (#718) Support for rush as alternative to GNU parallel (#729) add bats_pipe helper function for run that executes \| as pipes (#663) publish docker images to ghcr.io (additionally to Dockerhub) (#740) Fixed: --------- fix run with options overwriting the value of i (#726, #727) fix ${BATS_TEST_NAMES[@]} containing only --tags instead of test name since Bats v1.8.0 (#705) fix run --keep-empty-lines counting trailing \n as (empty) new line (#711) fix short flag unpacker creating bogus command lines with valued flags (#732) fix formatter becoming confused with retries (#734) fix --gather-test-outputs-in fails on tests with / (#735) fix overriding date breaks --timing (#736) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* linux-serial-test: Update to latest git revisionMarek Vasut2023-07-081-1/+1
| | | | | | | Update the recipe to latest git revision to pull in latest fixes. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* *.patch: add Upstream-Status to all patchesMartin Jansa2023-06-214-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* syzkaller: Upgrade to latest tip of trunkKhem Raj2023-06-193-11/+44
| | | | | | | - Enable cgo with this version - Fix build with musl Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fwts: Fix build issues found with lld linkerKhem Raj2023-06-122-0/+44
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>