• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2023 Petr Vorel <pvorel@suse.cz>
4  */
5 
6 #define TST_NO_DEFAULT_MAIN
7 #include "tst_test.h"
8 
main(void)9 int main(void)
10 {
11 	return tst_lockdown_enabled() <= 0;
12 }
13