You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
329 B
22 lines
329 B
4 months ago
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
/*
|
||
|
* Copyright (c) 2016 Cyril Hrubis <chrubis@suse.cz>
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* The test should abort when oldlib function is called from newlib.
|
||
|
*/
|
||
|
|
||
|
#include "tst_test.h"
|
||
|
|
||
|
void tst_exit(void);
|
||
|
|
||
|
static void do_test(void)
|
||
|
{
|
||
|
tst_exit();
|
||
|
}
|
||
|
|
||
|
static struct tst_test test = {
|
||
|
.test_all = do_test,
|
||
|
};
|