blob: 304c205149e0afaf4fb60a8426b5fd3f08fd7087 [file] [edit]
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2016 Cyril Hrubis <[email protected]>
*/
/*
* 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,
};