xref: /linux/tools/testing/selftests/sched_ext/exit_test.h (revision 3a39d672e7f48b8d6b91a09afa4b55352773b4b5)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (c) 2024 Meta Platforms, Inc. and affiliates.
4  * Copyright (c) 2024 David Vernet <dvernet@meta.com>
5  */
6 
7 #ifndef __EXIT_TEST_H__
8 #define __EXIT_TEST_H__
9 
10 enum exit_test_case {
11 	EXIT_SELECT_CPU,
12 	EXIT_ENQUEUE,
13 	EXIT_DISPATCH,
14 	EXIT_ENABLE,
15 	EXIT_INIT_TASK,
16 	EXIT_INIT,
17 	NUM_EXITS,
18 };
19 
20 #endif  // # __EXIT_TEST_H__
21