This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from ffc1c20c46f7 Merge tag 'for-5.7/dm-changes' of git://git.kernel.org/pub [...] new 034c7678dd2c selftests/resctrl: Add README for resctrl tests new 591a6e8588fc selftests/resctrl: Add basic resctrl file system operation [...] new 1d3f08687d76 selftests/resctrl: Read memory bandwidth from perf IMC cou [...] new 7f4d257e3a2a selftests/resctrl: Add callback to start a benchmark new a2561b12fe39 selftests/resctrl: Add built in benchmark new ecdbb911f22d selftests/resctrl: Add MBM test new 01fee6b4d1f9 selftests/resctrl: Add MBA test new 78941183d1b1 selftests/resctrl: Add Cache QoS Monitoring (CQM) selftest new 790bf585b0ee selftests/resctrl: Add Cache Allocation Technology (CAT) selftest new 53f74fbec9f0 selftests/resctrl: Add vendor detection mechanism new c0327e1d7c42 selftests/resctrl: Use cache index3 id for AMD schemata masks new 85f553d24ada selftests/resctrl: Disable MBA and MBM tests for AMD new 3032e3a7c7e3 selftests/resctrl: Add the test in MAINTAINERS new 14f4283aa3e6 selftests/resctrl: fix spelling mistake "Errror" -> "Error" new 785c4e834f5f selftests/timens: Remove duplicated include <time.h> new 9c249ec312db selftests/ftrace: Fix typo in trigger-multihist.tc new 1ae81d78a8b2 selftests/seccomp: Adjust test fixture counts new 29e911ef7b70 selftests: Fix kselftest O=objdir build from cluttering to [...] new 1dc74544edc6 selftests: android: ion: Fix ionmap_test compile error new fb0bb3952401 selftests: android: Fix custom install from skipping test progs new f46f57628059 selftests/harness: Move test child waiting logic new c31801da6e3d selftests/harness: Handle timeouts cleanly new 860f0a7792a5 selftests: Fix seccomp to support relocatable build (O=objdir) new d3fd949abd3e selftests: Fix memfd to support relocatable build (O=objdir) new 1056d3d2c97e selftests: enforce local header dependency in lib.mk new 397a97946798 Merge tag 'linux-kselftest-5.7-rc1' of git://git.kernel.or [...] new afc63da64f1e kunit: kunit_parser: make parser more robust new 021ed9f551da kunit: Run all KUnit tests through allyesconfig new 0476e69f3937 kunit: add --make_options new 2d68df6cc4bf kunit: Always print actual pointer values in asserts new 97752c39bdae kunit: kunit_tool: Allow .kunitconfig to disable config items new cb88577bb6b2 Fix linked-list KUnit test when run multiple times new 0d5792c9bc45 Documentation: kunit: Make the KUnit documentation less UM [...] new e2219db280e3 kunit: add debugfs /sys/kernel/debug/kunit/<suite>/results [...] new eda8e324f708 kunit: add log test new c3bba690a264 kunit: subtests should be indented 4 spaces according to TAP new 32526908fe86 kunit: update documentation to describe debugfs representation new e23349af9ee2 kunit: tool: add missing test data file content new 668f1e926741 Merge tag 'linux-kselftest-kunit-5.7-rc1' of git://git.ker [...]
The 39 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/kunit/index.rst | 40 +- Documentation/dev-tools/kunit/kunit-tool.rst | 7 + Documentation/dev-tools/kunit/start.rst | 80 ++- Documentation/dev-tools/kunit/usage.rst | 14 + MAINTAINERS | 1 + include/kunit/test.h | 63 +- lib/kunit/Kconfig | 8 + lib/kunit/Makefile | 4 + lib/kunit/assert.c | 79 +-- lib/kunit/debugfs.c | 116 ++++ lib/kunit/debugfs.h | 30 + lib/kunit/kunit-test.c | 44 +- lib/kunit/test.c | 148 +++- lib/list-test.c | 4 +- tools/testing/kunit/.gitattributes | 1 + tools/testing/kunit/configs/broken_on_uml.config | 41 ++ tools/testing/kunit/kunit.py | 38 +- tools/testing/kunit/kunit_config.py | 41 +- tools/testing/kunit/kunit_kernel.py | 84 ++- tools/testing/kunit/kunit_parser.py | 51 +- tools/testing/kunit/kunit_tool_test.py | 108 ++- .../kunit/test_data/test_config_printk_time.log | 31 + .../test_data/test_interrupted_tap_output.log | 37 + .../test_data/test_kernel_panic_interrupt.log | 25 + .../kunit/test_data/test_multiple_prefixes.log | 31 + .../test_output_with_prefix_isolated_correctly.log | 33 + .../kunit/test_data/test_pound_no_prefix.log | 33 + tools/testing/kunit/test_data/test_pound_sign.log | 33 + tools/testing/selftests/Makefile | 4 +- tools/testing/selftests/android/Makefile | 2 +- tools/testing/selftests/android/ion/Makefile | 2 +- .../ftrace/test.d/trigger/trigger-multihist.tc | 2 +- tools/testing/selftests/kselftest_harness.h | 144 ++-- tools/testing/selftests/lib.mk | 3 +- tools/testing/selftests/memfd/Makefile | 9 +- tools/testing/selftests/resctrl/Makefile | 17 + tools/testing/selftests/resctrl/README | 53 ++ tools/testing/selftests/resctrl/cache.c | 272 ++++++++ tools/testing/selftests/resctrl/cat_test.c | 250 +++++++ tools/testing/selftests/resctrl/cqm_test.c | 176 +++++ tools/testing/selftests/resctrl/fill_buf.c | 213 ++++++ tools/testing/selftests/resctrl/mba_test.c | 171 +++++ tools/testing/selftests/resctrl/mbm_test.c | 145 ++++ tools/testing/selftests/resctrl/resctrl.h | 107 +++ tools/testing/selftests/resctrl/resctrl_tests.c | 202 ++++++ tools/testing/selftests/resctrl/resctrl_val.c | 744 +++++++++++++++++++++ tools/testing/selftests/resctrl/resctrlfs.c | 722 ++++++++++++++++++++ tools/testing/selftests/seccomp/Makefile | 17 +- tools/testing/selftests/seccomp/seccomp_bpf.c | 10 +- tools/testing/selftests/timens/exec.c | 1 - tools/testing/selftests/timens/procfs.c | 1 - tools/testing/selftests/timens/timens.c | 1 - tools/testing/selftests/timens/timer.c | 1 - 53 files changed, 4213 insertions(+), 281 deletions(-) create mode 100644 lib/kunit/debugfs.c create mode 100644 lib/kunit/debugfs.h create mode 100644 tools/testing/kunit/.gitattributes create mode 100644 tools/testing/kunit/configs/broken_on_uml.config create mode 100644 tools/testing/kunit/test_data/test_config_printk_time.log create mode 100644 tools/testing/kunit/test_data/test_interrupted_tap_output.log create mode 100644 tools/testing/kunit/test_data/test_kernel_panic_interrupt.log create mode 100644 tools/testing/kunit/test_data/test_multiple_prefixes.log create mode 100644 tools/testing/kunit/test_data/test_output_with_prefix_isolated_ [...] create mode 100644 tools/testing/kunit/test_data/test_pound_no_prefix.log create mode 100644 tools/testing/kunit/test_data/test_pound_sign.log create mode 100644 tools/testing/selftests/resctrl/Makefile create mode 100644 tools/testing/selftests/resctrl/README create mode 100644 tools/testing/selftests/resctrl/cache.c create mode 100644 tools/testing/selftests/resctrl/cat_test.c create mode 100644 tools/testing/selftests/resctrl/cqm_test.c create mode 100644 tools/testing/selftests/resctrl/fill_buf.c create mode 100644 tools/testing/selftests/resctrl/mba_test.c create mode 100644 tools/testing/selftests/resctrl/mbm_test.c create mode 100644 tools/testing/selftests/resctrl/resctrl.h create mode 100644 tools/testing/selftests/resctrl/resctrl_tests.c create mode 100644 tools/testing/selftests/resctrl/resctrl_val.c create mode 100644 tools/testing/selftests/resctrl/resctrlfs.c