This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from b19edac5992d Merge tag 'nolibc.2023.06.22a' of git://git.kernel.org/pub [...] new e30f65c4b3d6 kunit: tool: undo type subscripts for subprocess.Popen new 78227fa03c68 Documentation: kunit: Modular tests should not depend on KUNIT=y new 55e8c1b49ac5 kunit: Always run cleanup from a test kthread new 410f07492eae Documentation: kunit: Note that assertions should not be u [...] new cdc87bda6075 Documentation: kunit: Warn that exit functions run even if [...] new a5ce66ad292b kunit: example: Provide example exit functions new b9dce8a1ed3e kunit: Add kunit_add_action() to defer a call until test exit new 00e63f8afcfc kunit: executor_test: Use kunit_add_action() new 57e3cded99e9 kunit: kmalloc_array: Use kunit_add_action() new c7853b55116e Documentation: kunit: Add usage notes for kunit_add_action() new d273b72846d6 kunit/test: Add example test showing parameterized testing new b08f75b9bb01 kunit: Fix reporting of the skipped parameterized tests new b1eaa8b2a55c kunit: Update kunit_print_ok_not_ok function new 6543960cd3bd Documentation: Kunit: add MODULE_LICENSE to sample code new c042030aa15e kunit: Fix obsolete name in documentation headers (func->action) new 260755184cbd kunit: Move kunit_abort() call out of kunit_do_failed_assertion() new fefdb43943c1 Documentation: kunit: Rename references to kunit_abort() new 2e66833579ed MAINTAINERS: Add source tree entry for kunit new 9ba92dc1de0a Merge tag 'linux-kselftest-kunit-6.5-rc1' of git://git.ker [...] new e42bf3cfedec selftests: media_tests: Add new subtest to video_device_test new 17cb2f17ed50 selftests: prctl: Fix spelling mistake "anonynous" -> "anonymous" new 375b9ff53cb6 kselftest: vDSO: Fix accumulation of uninitialized ret whe [...] new c4f461a113ec selftests/clone3: test clone3 with exit signal in flags new 1977ecea8c75 selftests/ftrace: Add new test case which checks for optim [...] new f6a01213e3f8 selftests: allow runners to override the timeout new bcda4c863efd selftest: pidfd: Omit long and repeating outputs new 301d6815cdb3 kselftests: Sort the collections list to avoid duplicate tests new 1e2c44992788 selftests/cpufreq: Don't enable generic lock debugging options new 8cd0d8633e2d selftests/ftace: Fix KTAP output ordering new dedbf31ac8a5 Merge tag 'linux-kselftest-next-6.5-rc1' of git://git.kern [...]
The 30 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/dev-tools/kselftest.rst | 22 +++ Documentation/dev-tools/kunit/architecture.rst | 4 +- Documentation/dev-tools/kunit/start.rst | 7 +- Documentation/dev-tools/kunit/usage.rst | 69 ++++++++- MAINTAINERS | 2 + include/kunit/resource.h | 92 ++++++++++++ include/kunit/test.h | 34 +++-- lib/kunit/executor_test.c | 11 +- lib/kunit/kunit-example-test.c | 56 ++++++++ lib/kunit/kunit-test.c | 88 +++++++++++- lib/kunit/resource.c | 99 +++++++++++++ lib/kunit/test.c | 157 ++++++++++++--------- tools/objtool/check.c | 1 + tools/testing/kunit/kunit_kernel.py | 6 +- tools/testing/kunit/mypy.ini | 6 + tools/testing/kunit/run_checks.py | 2 +- tools/testing/selftests/clone3/clone3.c | 5 +- tools/testing/selftests/cpufreq/config | 8 -- tools/testing/selftests/ftrace/ftracetest | 2 +- .../ftrace/test.d/kprobe/kprobe_opt_types.tc | 34 +++++ tools/testing/selftests/kselftest/runner.sh | 11 +- .../selftests/media_tests/video_device_test.c | 111 +++++++++++---- tools/testing/selftests/pidfd/pidfd.h | 1 - tools/testing/selftests/pidfd/pidfd_fdinfo_test.c | 1 + tools/testing/selftests/pidfd/pidfd_test.c | 3 +- .../selftests/prctl/set-anon-vma-name-test.c | 2 +- tools/testing/selftests/run_kselftest.sh | 7 +- .../selftests/vDSO/vdso_test_clock_getres.c | 4 +- 28 files changed, 705 insertions(+), 140 deletions(-) create mode 100644 tools/testing/kunit/mypy.ini create mode 100644 tools/testing/selftests/ftrace/test.d/kprobe/kprobe_opt_types.tc