xref: /aosp_15_r20/external/ltp/lib/newlib_tests/test01.c (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1*49cdfc7eSAndroid Build Coastguard Worker // SPDX-License-Identifier: GPL-2.0-or-later
2*49cdfc7eSAndroid Build Coastguard Worker /*
3*49cdfc7eSAndroid Build Coastguard Worker  * Copyright (c) 2016 Cyril Hrubis <[email protected]>
4*49cdfc7eSAndroid Build Coastguard Worker  */
5*49cdfc7eSAndroid Build Coastguard Worker 
6*49cdfc7eSAndroid Build Coastguard Worker /*
7*49cdfc7eSAndroid Build Coastguard Worker  * The test should abort when oldlib function is called from newlib.
8*49cdfc7eSAndroid Build Coastguard Worker  */
9*49cdfc7eSAndroid Build Coastguard Worker 
10*49cdfc7eSAndroid Build Coastguard Worker #include "tst_test.h"
11*49cdfc7eSAndroid Build Coastguard Worker 
12*49cdfc7eSAndroid Build Coastguard Worker void tst_exit(void);
13*49cdfc7eSAndroid Build Coastguard Worker 
do_test(void)14*49cdfc7eSAndroid Build Coastguard Worker static void do_test(void)
15*49cdfc7eSAndroid Build Coastguard Worker {
16*49cdfc7eSAndroid Build Coastguard Worker 	tst_exit();
17*49cdfc7eSAndroid Build Coastguard Worker }
18*49cdfc7eSAndroid Build Coastguard Worker 
19*49cdfc7eSAndroid Build Coastguard Worker static struct tst_test test = {
20*49cdfc7eSAndroid Build Coastguard Worker 	.test_all = do_test,
21*49cdfc7eSAndroid Build Coastguard Worker };
22