summaryrefslogtreecommitdiffstats
path: root/lib/kunit
AgeCommit message (Expand)AuthorLines
2024-01-03kunit: Fix some comments which were mistakenly kerneldocDavid Gow-3/+3
2024-01-03kunit: Add example of kunit_activate_static_stub() with pointer-to-functionRichard Fitzgerald-0/+35
2024-01-03kunit: Fix NULL-dereference in kunit_init_suite() if suite->log is NULLRichard Fitzgerald-1/+3
2023-12-18kunit: Reset test->priv after each param iterationMichal Wajdeczko-0/+1
2023-12-18kunit: Add example for using test->privMichal Wajdeczko-0/+15
2023-12-18kunit: Add APIs for managing devicesdavidgow@google.com-2/+336
2023-12-18kunit: add ability to run tests after boot using debugfsRae Moar-0/+78
2023-12-18kunit: add is_init test attributeRae Moar-1/+65
2023-12-18kunit: add example suite to test init suitesRae Moar-0/+37
2023-12-18kunit: add KUNIT_INIT_TABLE to init linker sectionRae Moar-13/+77
2023-12-18kunit: debugfs: Handle errors from alloc_string_stream()Richard Fitzgerald-5/+25
2023-12-18kunit: debugfs: Fix unchecked dereference in debugfs_print_results()Richard Fitzgerald-1/+3
2023-12-18kunit: string-stream: Allow ERR_PTR to be passed to string_stream_destroy()Richard Fitzgerald-1/+1
2023-12-18kunit: string-stream-test: Avoid cast warning when testing gfp_t flagsRichard Fitzgerald-1/+1
2023-12-18kunit: Add a macro to wrap a deferred action functionDavid Gow-6/+5
2023-11-14kunit: test: Avoid cast warning when adding kfree() as an actionRichard Fitzgerald-1/+1
2023-11-14kunit: Reset suite counter right before running testsMichal Wajdeczko-2/+2
2023-11-14kunit: Warn if tests are slowMaxime Ripard-0/+38
2023-09-28kunit: test: Fix the possible memory leak in executor_testJinjie Ruan-14/+22
2023-09-28kunit: Fix possible memory leak in kunit_filter_suites()Jinjie Ruan-4/+13
2023-09-28kunit: Fix the wrong kfree of copy for kunit_filter_suites()Jinjie Ruan-1/+1
2023-09-28kunit: Fix missed memory release in kunit_free_suite_set()Jinjie Ruan-1/+3
2023-09-18kunit: Reset test status on each param iterationMichal Wajdeczko-4/+7
2023-09-18kunit: string-stream: Test performance of string_streamRichard Fitzgerald-0/+54
2023-09-18kunit: Use string_stream for test logRichard Fitzgerald-61/+75
2023-09-18kunit: string-stream: Add tests for freeing resource-managed string_streamRichard Fitzgerald-5/+145
2023-09-18kunit: string-stream: Decouple string_stream from kunitRichard Fitzgerald-24/+53
2023-09-18kunit: string-stream: Add kunit_alloc_string_stream()Richard Fitzgerald-18/+29
2023-09-18kunit: Don't use a managed alloc in is_literal()Richard Fitzgerald-8/+6
2023-09-18kunit: string-stream-test: Add cases for string_stream newline appendingRichard Fitzgerald-0/+93
2023-09-18kunit: string-stream: Add option to make all lines end with newlineRichard Fitzgerald-7/+28
2023-09-18kunit: string-stream: Improve testing of string_streamRichard Fitzgerald-16/+217
2023-09-18kunit: string-stream: Don't create a fragment for empty stringsRichard Fitzgerald-2/+8
2023-09-05kunit: Fix possible memory leak in kunit_filter_suites()Jinjie Ruan-2/+2
2023-09-05kunit: Fix possible null-ptr-deref in kunit_parse_glob_filter()Jinjie Ruan-4/+19
2023-09-05kunit: Fix the wrong err path and add goto labels in kunit_filter_suites()Jinjie Ruan-9/+12
2023-09-05kunit: Fix wild-memory-access bug in kunit_free_suite_set()Jinjie Ruan-1/+2
2023-09-01kunit: test: Make filter strings in executor_test writableDavid Gow-5/+8
2023-08-21kunit: fix struct kunit_attr headerRae Moar-0/+2
2023-08-08kunit: Allow kunit test modules to use test filteringJanusz Krzysztofik-27/+55
2023-08-08kunit: Make 'list' action available to kunit test modulesJanusz Krzysztofik-14/+32
2023-08-08kunit: Report the count of test suites in a moduleJanusz Krzysztofik-32/+52
2023-08-04kunit: fix uninitialized variables bug in attributes filteringRae Moar-31/+29
2023-08-04kunit: fix possible memory leak in kunit_filter_suites()Ruan Jinjie-5/+12
2023-07-31kunit: fix wild-memory-access bug in kunit_filter_suites()Ruan Jinjie-1/+2
2023-07-26kunit: add tests for filtering attributesRae Moar-0/+116
2023-07-26kunit: Add ability to filter attributesRae Moar-28/+358
2023-07-26kunit: Add module attributeRae Moar-0/+25
2023-07-26kunit: Add speed attributeRae Moar-1/+52
2023-07-26kunit: Add test attributes API structureRae Moar-12/+109