]> Git Repo - linux.git/blob - tools/testing/selftests/bpf/prog_tests/nested_trust.c
Linux 6.14-rc3
[linux.git] / tools / testing / selftests / bpf / prog_tests / nested_trust.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */
3
4 #include <test_progs.h>
5 #include "nested_trust_failure.skel.h"
6 #include "nested_trust_success.skel.h"
7 #include "nested_acquire.skel.h"
8
9 void test_nested_trust(void)
10 {
11         RUN_TESTS(nested_trust_success);
12         RUN_TESTS(nested_trust_failure);
13
14         if (env.has_testmod)
15                 RUN_TESTS(nested_acquire);
16 }
This page took 0.034897 seconds and 4 git commands to generate.