diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/skiboot/libc/test/run-stdlib-test.c | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/skiboot/libc/test/run-stdlib-test.c')
-rw-r--r-- | roms/skiboot/libc/test/run-stdlib-test.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/roms/skiboot/libc/test/run-stdlib-test.c b/roms/skiboot/libc/test/run-stdlib-test.c new file mode 100644 index 000000000..f7d7137c9 --- /dev/null +++ b/roms/skiboot/libc/test/run-stdlib-test.c @@ -0,0 +1,19 @@ +// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later +/* + * Copyright 2013-2015 IBM Corp. + * + * This file is run with the skiboot libc files rather than system libc. + * This means we have a bit of "fun" with actually executing the tests on + * the host. + * Patches to make this less ugly are very welcome. + */ + +#include <config.h> +#include <stdarg.h> + +#include "../stdlib/atoi.c" +#include "../stdlib/atol.c" +#include "../stdlib/error.c" +#include "../stdlib/rand.c" +#include "../stdlib/strtol.c" +#include "../stdlib/strtoul.c" |