summaryrefslogtreecommitdiff
path: root/lib/kunit
AgeCommit message (Expand)AuthorFilesLines
2024-05-06kunit: bail out early in __kunit_test_suites_init() if there are no suites to...Scott Mayhew1-0/+3
2024-05-06kunit: string-stream-test: use KUNIT_DEFINE_ACTION_WRAPPERIvan Orlov1-10/+2
2024-05-06kunit: test: Move fault tests behind KUNIT_FAULT_TEST Kconfig optionDavid Gow2-4/+15
2024-05-06kunit: unregister the device on errorWander Lairson Costa1-1/+1
2024-05-06kunit: Fix race condition in try-catch completionDavid Gow1-3/+7
2024-05-06kunit: Add tests for faultMickaël Salaün1-1/+44
2024-05-06kunit: Print last test location on faultMickaël Salaün1-3/+7
2024-05-06kunit: Handle test faultsMickaël Salaün1-7/+12
2024-05-06kunit: Fix timeout messageMickaël Salaün1-1/+2
2024-05-06kunit: Fix kthread referenceMickaël Salaün1-3/+6
2024-05-06kunit: Handle thread creation errorMickaël Salaün1-0/+1
2024-02-28kunit: test: Log the correct filter string in executor_testDavid Gow1-1/+1
2024-02-28kunit: Setup DMA masks on the kunit deviceMaxime Ripard1-0/+4
2024-02-28kunit: make kunit_bus_type constRicardo B. Marliere1-1/+1
2024-02-28kunit: Mark filter* params as rwLucas De Marchi1-3/+3
2024-02-07kunit: device: Unregister the kunit_bus on shutdownDavid Gow3-0/+19
2024-01-22kunit: run test suites only after module initialization completesMarco Pagani2-3/+15
2024-01-22kunit: device: Fix a NULL vs IS_ERR() check in init()Dan Carpenter1-2/+2
2024-01-22kunit: Fix a NULL vs IS_ERR() bugDan Carpenter1-1/+1
2024-01-03kunit: Fix some comments which were mistakenly kerneldocDavid Gow1-3/+3
2024-01-03kunit: Add example of kunit_activate_static_stub() with pointer-to-functionRichard Fitzgerald1-0/+35
2024-01-03kunit: Fix NULL-dereference in kunit_init_suite() if suite->log is NULLRichard Fitzgerald1-1/+3
2023-12-18kunit: Reset test->priv after each param iterationMichal Wajdeczko1-0/+1
2023-12-18kunit: Add example for using test->privMichal Wajdeczko1-0/+15
2023-12-18kunit: Add APIs for managing devicesdavidgow@google.com5-2/+336
2023-12-18kunit: add ability to run tests after boot using debugfsRae Moar2-0/+78
2023-12-18kunit: add is_init test attributeRae Moar2-1/+65
2023-12-18kunit: add example suite to test init suitesRae Moar1-0/+37
2023-12-18kunit: add KUNIT_INIT_TABLE to init linker sectionRae Moar2-13/+77
2023-12-18kunit: debugfs: Handle errors from alloc_string_stream()Richard Fitzgerald1-5/+25
2023-12-18kunit: debugfs: Fix unchecked dereference in debugfs_print_results()Richard Fitzgerald1-1/+3
2023-12-18kunit: string-stream: Allow ERR_PTR to be passed to string_stream_destroy()Richard Fitzgerald1-1/+1
2023-12-18kunit: string-stream-test: Avoid cast warning when testing gfp_t flagsRichard Fitzgerald1-1/+1
2023-12-18kunit: Add a macro to wrap a deferred action functionDavid Gow2-6/+5
2023-11-14kunit: test: Avoid cast warning when adding kfree() as an actionRichard Fitzgerald1-1/+1
2023-11-14kunit: Reset suite counter right before running testsMichal Wajdeczko1-2/+2
2023-11-14kunit: Warn if tests are slowMaxime Ripard1-0/+38
2023-09-28kunit: test: Fix the possible memory leak in executor_testJinjie Ruan1-14/+22
2023-09-28kunit: Fix possible memory leak in kunit_filter_suites()Jinjie Ruan1-4/+13
2023-09-28kunit: Fix the wrong kfree of copy for kunit_filter_suites()Jinjie Ruan1-1/+1
2023-09-28kunit: Fix missed memory release in kunit_free_suite_set()Jinjie Ruan1-1/+3
2023-09-18kunit: Reset test status on each param iterationMichal Wajdeczko2-4/+7
2023-09-18kunit: string-stream: Test performance of string_streamRichard Fitzgerald1-0/+54
2023-09-18kunit: Use string_stream for test logRichard Fitzgerald3-61/+75
2023-09-18kunit: string-stream: Add tests for freeing resource-managed string_streamRichard Fitzgerald2-5/+145
2023-09-18kunit: string-stream: Decouple string_stream from kunitRichard Fitzgerald4-24/+53
2023-09-18kunit: string-stream: Add kunit_alloc_string_stream()Richard Fitzgerald4-18/+29
2023-09-18kunit: Don't use a managed alloc in is_literal()Richard Fitzgerald1-8/+6
2023-09-18kunit: string-stream-test: Add cases for string_stream newline appendingRichard Fitzgerald1-0/+93
2023-09-18kunit: string-stream: Add option to make all lines end with newlineRichard Fitzgerald2-7/+28