Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Base unit test (KUnit) API.
4 *
5 * Copyright (C) 2019, Google LLC.
6 * Author: Brendan Higgins <brendanhiggins@google.com>
7 */
8
9#include <kunit/resource.h>
10#include <kunit/test.h>
11#include <kunit/test-bug.h>
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/moduleparam.h>
15#include <linux/panic.h>
16#include <linux/sched/debug.h>
17#include <linux/sched.h>
18
19#include "debugfs.h"
20#include "hooks-impl.h"
21#include "string-stream.h"
22#include "try-catch-impl.h"
23
24/*
25 * Hook to fail the current test and print an error message to the log.
26 */
27void __printf(3, 4) __kunit_fail_current_test_impl(const char *file, int line, const char *fmt, ...)
28{
29 va_list args;
30 int len;
31 char *buffer;
32
33 if (!current->kunit_test)
34 return;
35
36 kunit_set_failure(current->kunit_test);
37
38 /* kunit_err() only accepts literals, so evaluate the args first. */
39 va_start(args, fmt);
40 len = vsnprintf(NULL, 0, fmt, args) + 1;
41 va_end(args);
42
43 buffer = kunit_kmalloc(current->kunit_test, len, GFP_KERNEL);
44 if (!buffer)
45 return;
46
47 va_start(args, fmt);
48 vsnprintf(buffer, len, fmt, args);
49 va_end(args);
50
51 kunit_err(current->kunit_test, "%s:%d: %s", file, line, buffer);
52 kunit_kfree(current->kunit_test, buffer);
53}
54
55/*
56 * Enable KUnit tests to run.
57 */
58#ifdef CONFIG_KUNIT_DEFAULT_ENABLED
59static bool enable_param = true;
60#else
61static bool enable_param;
62#endif
63module_param_named(enable, enable_param, bool, 0);
64MODULE_PARM_DESC(enable, "Enable KUnit tests");
65
66/*
67 * KUnit statistic mode:
68 * 0 - disabled
69 * 1 - only when there is more than one subtest
70 * 2 - enabled
71 */
72static int kunit_stats_enabled = 1;
73module_param_named(stats_enabled, kunit_stats_enabled, int, 0644);
74MODULE_PARM_DESC(stats_enabled,
75 "Print test stats: never (0), only for multiple subtests (1), or always (2)");
76
77struct kunit_result_stats {
78 unsigned long passed;
79 unsigned long skipped;
80 unsigned long failed;
81 unsigned long total;
82};
83
84static bool kunit_should_print_stats(struct kunit_result_stats stats)
85{
86 if (kunit_stats_enabled == 0)
87 return false;
88
89 if (kunit_stats_enabled == 2)
90 return true;
91
92 return (stats.total > 1);
93}
94
95static void kunit_print_test_stats(struct kunit *test,
96 struct kunit_result_stats stats)
97{
98 if (!kunit_should_print_stats(stats))
99 return;
100
101 kunit_log(KERN_INFO, test,
102 KUNIT_SUBTEST_INDENT
103 "# %s: pass:%lu fail:%lu skip:%lu total:%lu",
104 test->name,
105 stats.passed,
106 stats.failed,
107 stats.skipped,
108 stats.total);
109}
110
111/**
112 * kunit_log_newline() - Add newline to the end of log if one is not
113 * already present.
114 * @log: The log to add the newline to.
115 */
116static void kunit_log_newline(char *log)
117{
118 int log_len, len_left;
119
120 log_len = strlen(log);
121 len_left = KUNIT_LOG_SIZE - log_len - 1;
122
123 if (log_len > 0 && log[log_len - 1] != '\n')
124 strncat(log, "\n", len_left);
125}
126
127/*
128 * Append formatted message to log, size of which is limited to
129 * KUNIT_LOG_SIZE bytes (including null terminating byte).
130 */
131void kunit_log_append(char *log, const char *fmt, ...)
132{
133 va_list args;
134 int len, log_len, len_left;
135
136 if (!log)
137 return;
138
139 log_len = strlen(log);
140 len_left = KUNIT_LOG_SIZE - log_len - 1;
141 if (len_left <= 0)
142 return;
143
144 /* Evaluate length of line to add to log */
145 va_start(args, fmt);
146 len = vsnprintf(NULL, 0, fmt, args) + 1;
147 va_end(args);
148
149 /* Print formatted line to the log */
150 va_start(args, fmt);
151 vsnprintf(log + log_len, min(len, len_left), fmt, args);
152 va_end(args);
153
154 /* Add newline to end of log if not already present. */
155 kunit_log_newline(log);
156}
157EXPORT_SYMBOL_GPL(kunit_log_append);
158
159size_t kunit_suite_num_test_cases(struct kunit_suite *suite)
160{
161 struct kunit_case *test_case;
162 size_t len = 0;
163
164 kunit_suite_for_each_test_case(suite, test_case)
165 len++;
166
167 return len;
168}
169EXPORT_SYMBOL_GPL(kunit_suite_num_test_cases);
170
171static void kunit_print_suite_start(struct kunit_suite *suite)
172{
173 /*
174 * We do not log the test suite header as doing so would
175 * mean debugfs display would consist of the test suite
176 * header prior to individual test results.
177 * Hence directly printk the suite status, and we will
178 * separately seq_printf() the suite header for the debugfs
179 * representation.
180 */
181 pr_info(KUNIT_SUBTEST_INDENT "KTAP version 1\n");
182 pr_info(KUNIT_SUBTEST_INDENT "# Subtest: %s\n",
183 suite->name);
184 pr_info(KUNIT_SUBTEST_INDENT "1..%zd\n",
185 kunit_suite_num_test_cases(suite));
186}
187
188/* Currently supported test levels */
189enum {
190 KUNIT_LEVEL_SUITE = 0,
191 KUNIT_LEVEL_CASE,
192 KUNIT_LEVEL_CASE_PARAM,
193};
194
195static void kunit_print_ok_not_ok(struct kunit *test,
196 unsigned int test_level,
197 enum kunit_status status,
198 size_t test_number,
199 const char *description,
200 const char *directive)
201{
202 const char *directive_header = (status == KUNIT_SKIPPED) ? " # SKIP " : "";
203 const char *directive_body = (status == KUNIT_SKIPPED) ? directive : "";
204
205 /*
206 * When test is NULL assume that results are from the suite
207 * and today suite results are expected at level 0 only.
208 */
209 WARN(!test && test_level, "suite test level can't be %u!\n", test_level);
210
211 /*
212 * We do not log the test suite results as doing so would
213 * mean debugfs display would consist of an incorrect test
214 * number. Hence directly printk the suite result, and we will
215 * separately seq_printf() the suite results for the debugfs
216 * representation.
217 */
218 if (!test)
219 pr_info("%s %zd %s%s%s\n",
220 kunit_status_to_ok_not_ok(status),
221 test_number, description, directive_header,
222 directive_body);
223 else
224 kunit_log(KERN_INFO, test,
225 "%*s%s %zd %s%s%s",
226 KUNIT_INDENT_LEN * test_level, "",
227 kunit_status_to_ok_not_ok(status),
228 test_number, description, directive_header,
229 directive_body);
230}
231
232enum kunit_status kunit_suite_has_succeeded(struct kunit_suite *suite)
233{
234 const struct kunit_case *test_case;
235 enum kunit_status status = KUNIT_SKIPPED;
236
237 if (suite->suite_init_err)
238 return KUNIT_FAILURE;
239
240 kunit_suite_for_each_test_case(suite, test_case) {
241 if (test_case->status == KUNIT_FAILURE)
242 return KUNIT_FAILURE;
243 else if (test_case->status == KUNIT_SUCCESS)
244 status = KUNIT_SUCCESS;
245 }
246
247 return status;
248}
249EXPORT_SYMBOL_GPL(kunit_suite_has_succeeded);
250
251static size_t kunit_suite_counter = 1;
252
253static void kunit_print_suite_end(struct kunit_suite *suite)
254{
255 kunit_print_ok_not_ok(NULL, KUNIT_LEVEL_SUITE,
256 kunit_suite_has_succeeded(suite),
257 kunit_suite_counter++,
258 suite->name,
259 suite->status_comment);
260}
261
262unsigned int kunit_test_case_num(struct kunit_suite *suite,
263 struct kunit_case *test_case)
264{
265 struct kunit_case *tc;
266 unsigned int i = 1;
267
268 kunit_suite_for_each_test_case(suite, tc) {
269 if (tc == test_case)
270 return i;
271 i++;
272 }
273
274 return 0;
275}
276EXPORT_SYMBOL_GPL(kunit_test_case_num);
277
278static void kunit_print_string_stream(struct kunit *test,
279 struct string_stream *stream)
280{
281 struct string_stream_fragment *fragment;
282 char *buf;
283
284 if (string_stream_is_empty(stream))
285 return;
286
287 buf = string_stream_get_string(stream);
288 if (!buf) {
289 kunit_err(test,
290 "Could not allocate buffer, dumping stream:\n");
291 list_for_each_entry(fragment, &stream->fragments, node) {
292 kunit_err(test, "%s", fragment->fragment);
293 }
294 kunit_err(test, "\n");
295 } else {
296 kunit_err(test, "%s", buf);
297 kunit_kfree(test, buf);
298 }
299}
300
301static void kunit_fail(struct kunit *test, const struct kunit_loc *loc,
302 enum kunit_assert_type type, const struct kunit_assert *assert,
303 assert_format_t assert_format, const struct va_format *message)
304{
305 struct string_stream *stream;
306
307 kunit_set_failure(test);
308
309 stream = alloc_string_stream(test, GFP_KERNEL);
310 if (IS_ERR(stream)) {
311 WARN(true,
312 "Could not allocate stream to print failed assertion in %s:%d\n",
313 loc->file,
314 loc->line);
315 return;
316 }
317
318 kunit_assert_prologue(loc, type, stream);
319 assert_format(assert, message, stream);
320
321 kunit_print_string_stream(test, stream);
322
323 string_stream_destroy(stream);
324}
325
326void __noreturn __kunit_abort(struct kunit *test)
327{
328 kunit_try_catch_throw(&test->try_catch); /* Does not return. */
329
330 /*
331 * Throw could not abort from test.
332 *
333 * XXX: we should never reach this line! As kunit_try_catch_throw is
334 * marked __noreturn.
335 */
336 WARN_ONCE(true, "Throw could not abort from test!\n");
337}
338EXPORT_SYMBOL_GPL(__kunit_abort);
339
340void __kunit_do_failed_assertion(struct kunit *test,
341 const struct kunit_loc *loc,
342 enum kunit_assert_type type,
343 const struct kunit_assert *assert,
344 assert_format_t assert_format,
345 const char *fmt, ...)
346{
347 va_list args;
348 struct va_format message;
349 va_start(args, fmt);
350
351 message.fmt = fmt;
352 message.va = &args;
353
354 kunit_fail(test, loc, type, assert, assert_format, &message);
355
356 va_end(args);
357}
358EXPORT_SYMBOL_GPL(__kunit_do_failed_assertion);
359
360void kunit_init_test(struct kunit *test, const char *name, char *log)
361{
362 spin_lock_init(&test->lock);
363 INIT_LIST_HEAD(&test->resources);
364 test->name = name;
365 test->log = log;
366 if (test->log)
367 test->log[0] = '\0';
368 test->status = KUNIT_SUCCESS;
369 test->status_comment[0] = '\0';
370}
371EXPORT_SYMBOL_GPL(kunit_init_test);
372
373/*
374 * Initializes and runs test case. Does not clean up or do post validations.
375 */
376static void kunit_run_case_internal(struct kunit *test,
377 struct kunit_suite *suite,
378 struct kunit_case *test_case)
379{
380 if (suite->init) {
381 int ret;
382
383 ret = suite->init(test);
384 if (ret) {
385 kunit_err(test, "failed to initialize: %d\n", ret);
386 kunit_set_failure(test);
387 return;
388 }
389 }
390
391 test_case->run_case(test);
392}
393
394static void kunit_case_internal_cleanup(struct kunit *test)
395{
396 kunit_cleanup(test);
397}
398
399/*
400 * Performs post validations and cleanup after a test case was run.
401 * XXX: Should ONLY BE CALLED AFTER kunit_run_case_internal!
402 */
403static void kunit_run_case_cleanup(struct kunit *test,
404 struct kunit_suite *suite)
405{
406 if (suite->exit)
407 suite->exit(test);
408
409 kunit_case_internal_cleanup(test);
410}
411
412struct kunit_try_catch_context {
413 struct kunit *test;
414 struct kunit_suite *suite;
415 struct kunit_case *test_case;
416};
417
418static void kunit_try_run_case(void *data)
419{
420 struct kunit_try_catch_context *ctx = data;
421 struct kunit *test = ctx->test;
422 struct kunit_suite *suite = ctx->suite;
423 struct kunit_case *test_case = ctx->test_case;
424
425 current->kunit_test = test;
426
427 /*
428 * kunit_run_case_internal may encounter a fatal error; if it does,
429 * abort will be called, this thread will exit, and finally the parent
430 * thread will resume control and handle any necessary clean up.
431 */
432 kunit_run_case_internal(test, suite, test_case);
433}
434
435static void kunit_try_run_case_cleanup(void *data)
436{
437 struct kunit_try_catch_context *ctx = data;
438 struct kunit *test = ctx->test;
439 struct kunit_suite *suite = ctx->suite;
440
441 current->kunit_test = test;
442
443 kunit_run_case_cleanup(test, suite);
444}
445
446static void kunit_catch_run_case_cleanup(void *data)
447{
448 struct kunit_try_catch_context *ctx = data;
449 struct kunit *test = ctx->test;
450 int try_exit_code = kunit_try_catch_get_result(&test->try_catch);
451
452 /* It is always a failure if cleanup aborts. */
453 kunit_set_failure(test);
454
455 if (try_exit_code) {
456 /*
457 * Test case could not finish, we have no idea what state it is
458 * in, so don't do clean up.
459 */
460 if (try_exit_code == -ETIMEDOUT) {
461 kunit_err(test, "test case cleanup timed out\n");
462 /*
463 * Unknown internal error occurred preventing test case from
464 * running, so there is nothing to clean up.
465 */
466 } else {
467 kunit_err(test, "internal error occurred during test case cleanup: %d\n",
468 try_exit_code);
469 }
470 return;
471 }
472
473 kunit_err(test, "test aborted during cleanup. continuing without cleaning up\n");
474}
475
476
477static void kunit_catch_run_case(void *data)
478{
479 struct kunit_try_catch_context *ctx = data;
480 struct kunit *test = ctx->test;
481 int try_exit_code = kunit_try_catch_get_result(&test->try_catch);
482
483 if (try_exit_code) {
484 kunit_set_failure(test);
485 /*
486 * Test case could not finish, we have no idea what state it is
487 * in, so don't do clean up.
488 */
489 if (try_exit_code == -ETIMEDOUT) {
490 kunit_err(test, "test case timed out\n");
491 /*
492 * Unknown internal error occurred preventing test case from
493 * running, so there is nothing to clean up.
494 */
495 } else {
496 kunit_err(test, "internal error occurred preventing test case from running: %d\n",
497 try_exit_code);
498 }
499 return;
500 }
501}
502
503/*
504 * Performs all logic to run a test case. It also catches most errors that
505 * occur in a test case and reports them as failures.
506 */
507static void kunit_run_case_catch_errors(struct kunit_suite *suite,
508 struct kunit_case *test_case,
509 struct kunit *test)
510{
511 struct kunit_try_catch_context context;
512 struct kunit_try_catch *try_catch;
513
514 try_catch = &test->try_catch;
515
516 kunit_try_catch_init(try_catch,
517 test,
518 kunit_try_run_case,
519 kunit_catch_run_case);
520 context.test = test;
521 context.suite = suite;
522 context.test_case = test_case;
523 kunit_try_catch_run(try_catch, &context);
524
525 /* Now run the cleanup */
526 kunit_try_catch_init(try_catch,
527 test,
528 kunit_try_run_case_cleanup,
529 kunit_catch_run_case_cleanup);
530 kunit_try_catch_run(try_catch, &context);
531
532 /* Propagate the parameter result to the test case. */
533 if (test->status == KUNIT_FAILURE)
534 test_case->status = KUNIT_FAILURE;
535 else if (test_case->status != KUNIT_FAILURE && test->status == KUNIT_SUCCESS)
536 test_case->status = KUNIT_SUCCESS;
537}
538
539static void kunit_print_suite_stats(struct kunit_suite *suite,
540 struct kunit_result_stats suite_stats,
541 struct kunit_result_stats param_stats)
542{
543 if (kunit_should_print_stats(suite_stats)) {
544 kunit_log(KERN_INFO, suite,
545 "# %s: pass:%lu fail:%lu skip:%lu total:%lu",
546 suite->name,
547 suite_stats.passed,
548 suite_stats.failed,
549 suite_stats.skipped,
550 suite_stats.total);
551 }
552
553 if (kunit_should_print_stats(param_stats)) {
554 kunit_log(KERN_INFO, suite,
555 "# Totals: pass:%lu fail:%lu skip:%lu total:%lu",
556 param_stats.passed,
557 param_stats.failed,
558 param_stats.skipped,
559 param_stats.total);
560 }
561}
562
563static void kunit_update_stats(struct kunit_result_stats *stats,
564 enum kunit_status status)
565{
566 switch (status) {
567 case KUNIT_SUCCESS:
568 stats->passed++;
569 break;
570 case KUNIT_SKIPPED:
571 stats->skipped++;
572 break;
573 case KUNIT_FAILURE:
574 stats->failed++;
575 break;
576 }
577
578 stats->total++;
579}
580
581static void kunit_accumulate_stats(struct kunit_result_stats *total,
582 struct kunit_result_stats add)
583{
584 total->passed += add.passed;
585 total->skipped += add.skipped;
586 total->failed += add.failed;
587 total->total += add.total;
588}
589
590int kunit_run_tests(struct kunit_suite *suite)
591{
592 char param_desc[KUNIT_PARAM_DESC_SIZE];
593 struct kunit_case *test_case;
594 struct kunit_result_stats suite_stats = { 0 };
595 struct kunit_result_stats total_stats = { 0 };
596
597 /* Taint the kernel so we know we've run tests. */
598 add_taint(TAINT_TEST, LOCKDEP_STILL_OK);
599
600 if (suite->suite_init) {
601 suite->suite_init_err = suite->suite_init(suite);
602 if (suite->suite_init_err) {
603 kunit_err(suite, KUNIT_SUBTEST_INDENT
604 "# failed to initialize (%d)", suite->suite_init_err);
605 goto suite_end;
606 }
607 }
608
609 kunit_print_suite_start(suite);
610
611 kunit_suite_for_each_test_case(suite, test_case) {
612 struct kunit test = { .param_value = NULL, .param_index = 0 };
613 struct kunit_result_stats param_stats = { 0 };
614 test_case->status = KUNIT_SKIPPED;
615
616 kunit_init_test(&test, test_case->name, test_case->log);
617
618 if (!test_case->generate_params) {
619 /* Non-parameterised test. */
620 kunit_run_case_catch_errors(suite, test_case, &test);
621 kunit_update_stats(¶m_stats, test.status);
622 } else {
623 /* Get initial param. */
624 param_desc[0] = '\0';
625 test.param_value = test_case->generate_params(NULL, param_desc);
626 kunit_log(KERN_INFO, &test, KUNIT_SUBTEST_INDENT KUNIT_SUBTEST_INDENT
627 "KTAP version 1\n");
628 kunit_log(KERN_INFO, &test, KUNIT_SUBTEST_INDENT KUNIT_SUBTEST_INDENT
629 "# Subtest: %s", test_case->name);
630
631 while (test.param_value) {
632 kunit_run_case_catch_errors(suite, test_case, &test);
633
634 if (param_desc[0] == '\0') {
635 snprintf(param_desc, sizeof(param_desc),
636 "param-%d", test.param_index);
637 }
638
639 kunit_print_ok_not_ok(&test, KUNIT_LEVEL_CASE_PARAM,
640 test.status,
641 test.param_index + 1,
642 param_desc,
643 test.status_comment);
644
645 /* Get next param. */
646 param_desc[0] = '\0';
647 test.param_value = test_case->generate_params(test.param_value, param_desc);
648 test.param_index++;
649
650 kunit_update_stats(¶m_stats, test.status);
651 }
652 }
653
654
655 kunit_print_test_stats(&test, param_stats);
656
657 kunit_print_ok_not_ok(&test, KUNIT_LEVEL_CASE, test_case->status,
658 kunit_test_case_num(suite, test_case),
659 test_case->name,
660 test.status_comment);
661
662 kunit_update_stats(&suite_stats, test_case->status);
663 kunit_accumulate_stats(&total_stats, param_stats);
664 }
665
666 if (suite->suite_exit)
667 suite->suite_exit(suite);
668
669 kunit_print_suite_stats(suite, suite_stats, total_stats);
670suite_end:
671 kunit_print_suite_end(suite);
672
673 return 0;
674}
675EXPORT_SYMBOL_GPL(kunit_run_tests);
676
677static void kunit_init_suite(struct kunit_suite *suite)
678{
679 kunit_debugfs_create_suite(suite);
680 suite->status_comment[0] = '\0';
681 suite->suite_init_err = 0;
682}
683
684bool kunit_enabled(void)
685{
686 return enable_param;
687}
688
689int __kunit_test_suites_init(struct kunit_suite * const * const suites, int num_suites)
690{
691 unsigned int i;
692
693 if (!kunit_enabled() && num_suites > 0) {
694 pr_info("kunit: disabled\n");
695 return 0;
696 }
697
698 static_branch_inc(&kunit_running);
699
700 for (i = 0; i < num_suites; i++) {
701 kunit_init_suite(suites[i]);
702 kunit_run_tests(suites[i]);
703 }
704
705 static_branch_dec(&kunit_running);
706 return 0;
707}
708EXPORT_SYMBOL_GPL(__kunit_test_suites_init);
709
710static void kunit_exit_suite(struct kunit_suite *suite)
711{
712 kunit_debugfs_destroy_suite(suite);
713}
714
715void __kunit_test_suites_exit(struct kunit_suite **suites, int num_suites)
716{
717 unsigned int i;
718
719 if (!kunit_enabled())
720 return;
721
722 for (i = 0; i < num_suites; i++)
723 kunit_exit_suite(suites[i]);
724
725 kunit_suite_counter = 1;
726}
727EXPORT_SYMBOL_GPL(__kunit_test_suites_exit);
728
729#ifdef CONFIG_MODULES
730static void kunit_module_init(struct module *mod)
731{
732 __kunit_test_suites_init(mod->kunit_suites, mod->num_kunit_suites);
733}
734
735static void kunit_module_exit(struct module *mod)
736{
737 __kunit_test_suites_exit(mod->kunit_suites, mod->num_kunit_suites);
738}
739
740static int kunit_module_notify(struct notifier_block *nb, unsigned long val,
741 void *data)
742{
743 struct module *mod = data;
744
745 switch (val) {
746 case MODULE_STATE_LIVE:
747 kunit_module_init(mod);
748 break;
749 case MODULE_STATE_GOING:
750 kunit_module_exit(mod);
751 break;
752 case MODULE_STATE_COMING:
753 case MODULE_STATE_UNFORMED:
754 break;
755 }
756
757 return 0;
758}
759
760static struct notifier_block kunit_mod_nb = {
761 .notifier_call = kunit_module_notify,
762 .priority = 0,
763};
764#endif
765
766void *kunit_kmalloc_array(struct kunit *test, size_t n, size_t size, gfp_t gfp)
767{
768 void *data;
769
770 data = kmalloc_array(n, size, gfp);
771
772 if (!data)
773 return NULL;
774
775 if (kunit_add_action_or_reset(test, (kunit_action_t *)kfree, data) != 0)
776 return NULL;
777
778 return data;
779}
780EXPORT_SYMBOL_GPL(kunit_kmalloc_array);
781
782void kunit_kfree(struct kunit *test, const void *ptr)
783{
784 if (!ptr)
785 return;
786
787 kunit_release_action(test, (kunit_action_t *)kfree, (void *)ptr);
788}
789EXPORT_SYMBOL_GPL(kunit_kfree);
790
791void kunit_cleanup(struct kunit *test)
792{
793 struct kunit_resource *res;
794 unsigned long flags;
795
796 /*
797 * test->resources is a stack - each allocation must be freed in the
798 * reverse order from which it was added since one resource may depend
799 * on another for its entire lifetime.
800 * Also, we cannot use the normal list_for_each constructs, even the
801 * safe ones because *arbitrary* nodes may be deleted when
802 * kunit_resource_free is called; the list_for_each_safe variants only
803 * protect against the current node being deleted, not the next.
804 */
805 while (true) {
806 spin_lock_irqsave(&test->lock, flags);
807 if (list_empty(&test->resources)) {
808 spin_unlock_irqrestore(&test->lock, flags);
809 break;
810 }
811 res = list_last_entry(&test->resources,
812 struct kunit_resource,
813 node);
814 /*
815 * Need to unlock here as a resource may remove another
816 * resource, and this can't happen if the test->lock
817 * is held.
818 */
819 spin_unlock_irqrestore(&test->lock, flags);
820 kunit_remove_resource(test, res);
821 }
822 current->kunit_test = NULL;
823}
824EXPORT_SYMBOL_GPL(kunit_cleanup);
825
826static int __init kunit_init(void)
827{
828 /* Install the KUnit hook functions. */
829 kunit_install_hooks();
830
831 kunit_debugfs_init();
832#ifdef CONFIG_MODULES
833 return register_module_notifier(&kunit_mod_nb);
834#else
835 return 0;
836#endif
837}
838late_initcall(kunit_init);
839
840static void __exit kunit_exit(void)
841{
842 memset(&kunit_hooks, 0, sizeof(kunit_hooks));
843#ifdef CONFIG_MODULES
844 unregister_module_notifier(&kunit_mod_nb);
845#endif
846 kunit_debugfs_cleanup();
847}
848module_exit(kunit_exit);
849
850MODULE_LICENSE("GPL v2");