diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-11 00:29:41 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-26 20:06:55 -0500 |
commit | 1214c97666139d06fd1d1301af05844f7771f377 (patch) | |
tree | 820e41dfbd93c33a10e3f4f7ea1282a1fac618ef /sim/testsuite/cris/c/syscall8.c | |
parent | 264dcc17cc4d2252d58bda347dfd78c1b78517da (diff) | |
download | binutils-gdb-1214c97666139d06fd1d1301af05844f7771f377.tar.gz |
sim: testsuite: initial support for OS-specific tests
We usually test against the newlib/libgloss environment, but for a
few ports that also support Linux apps, we want to test that logic
too. A lot of the C code is written such that it works with either
newlib/libgloss or glibc/linux toolchains, but we have some tests
that end up being Linux-specific. Cris has been using the target
tuple as a rough proxy for this (where cris*-*-elf is assumed to be
newlib/libgloss, and everything else is glibc/linux), but that is a
bit too rough, and it doesn't work in a multitarget build.
So lets create a few stub files that we can do compile tests with
to detect the different setups, and then let tests declare which
one they require (if they require any at all).
Diffstat (limited to 'sim/testsuite/cris/c/syscall8.c')
-rw-r--r-- | sim/testsuite/cris/c/syscall8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/testsuite/cris/c/syscall8.c b/sim/testsuite/cris/c/syscall8.c index c579436d0ef..38d6cc9a1ba 100644 --- a/sim/testsuite/cris/c/syscall8.c +++ b/sim/testsuite/cris/c/syscall8.c @@ -1,5 +1,5 @@ /* As the included file, but specifying silent ENOSYS. -#notarget: cris*-*-elf +#progos: linux #sim: --cris-unknown-syscall=enosys-quiet #output: ENOSYS\n #output: xyzzy\n |