1/*
2 * Copyright 2022 Google LLC
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7SECTIONS
8{
9	.data.ztest_expected_result_area : ALIGN(4)
10	{
11		_ztest_expected_result_entry_list_start = .;
12		KEEP(*(SORT_BY_NAME(._ztest_expected_result_entry.static.*)))
13		_ztest_expected_result_entry_list_end = .;
14	}
15	.data.ztest_suite_node_area : ALIGN(4)
16	{
17		_ztest_suite_node_list_start = .;
18		KEEP(*(SORT_BY_NAME(._ztest_suite_node.static.*)))
19		_ztest_suite_node_list_end = .;
20	}
21	.data.ztest_unit_test_area : ALIGN(4)
22	{
23		_ztest_unit_test_list_start = .;
24		KEEP(*(SORT_BY_NAME(._ztest_unit_test.static.*)))
25		_ztest_unit_test_list_end = .;
26	}
27	.data.ztest_test_rule_area : ALIGN(4)
28	{
29		_ztest_test_rule_list_start = .;
30		KEEP(*(SORT_BY_NAME(._ztest_test_rule.static.*)))
31		_ztest_test_rule_list_end = .;
32	}
33}
34INSERT AFTER .data;
35