1 // SPDX-License-Identifier: GPL-2.0-only 2 // 3 // node-tree-test.c - An application of Kunit to test node tree. 4 // 5 // Copyright (c) 2026 Takashi Sakamoto 6 // 7 // This file can not be built independently since it is intentionally included in core-topology.c. 8 9 #include <kunit/test.h> 10 11 static struct kunit_case node_tree_test_cases[] = { 12 {} 13 }; 14 15 static struct kunit_suite node_tree_test_suite = { 16 .name = "firewire-node-tree", 17 .test_cases = node_tree_test_cases, 18 }; 19 kunit_test_suite(node_tree_test_suite); 20