diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2016-06-27 16:45:45 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2016-06-27 23:57:40 +0200 |
commit | 0cdaef4dac5a885af9848e158e77cc347ee781bb (patch) | |
tree | 0b991e0eb1fb11fd9fcdd8abd1c276ad807a9010 /sysdeps/mips/tst-mode-switch-2.c | |
parent | 30dcf959d2ab76f0bc8b5bc147c35319a6a2ba08 (diff) | |
download | glibc-0cdaef4dac5a885af9848e158e77cc347ee781bb.tar.gz glibc-0cdaef4dac5a885af9848e158e77cc347ee781bb.tar.xz glibc-0cdaef4dac5a885af9848e158e77cc347ee781bb.zip |
MIPS: run tst-mode-switch-{1,2,3}.c using test-skeleton.c
For some reasons I have not investigated yet, tst-mode-switch-1 hangs on a MIPS UTM-8 machine running an o32 userland and a 3.6.1 kernel. This patch changes the test so that it runs under the test-skeleton framework, causing the test to fail after a timeout instead of hanging the whole testsuite. At the same time, also change the tst-mode-switch-2 and tst-mode-switch-3 tests. Changelog: * sysdeps/mips/tst-mode-switch-1.c (main): Converted to ... (do_test): ... this. (TEST_FUNCTION): New macro. Include test-skeleton.c. * sysdeps/mips/tst-mode-switch-2.c (main): Likewise. * sysdeps/mips/tst-mode-switch-3.c (main): Likewise.
Diffstat (limited to 'sysdeps/mips/tst-mode-switch-2.c')
-rw-r--r-- | sysdeps/mips/tst-mode-switch-2.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/mips/tst-mode-switch-2.c b/sysdeps/mips/tst-mode-switch-2.c index b41acf45d3..83dad80afe 100644 --- a/sysdeps/mips/tst-mode-switch-2.c +++ b/sysdeps/mips/tst-mode-switch-2.c @@ -77,8 +77,8 @@ thread_function (void * arg __attribute__ ((unused))) return NULL; } -int -main (void) +static int +do_test (void) { int count = sysconf (_SC_NPROCESSORS_ONLN); if (count <= 0) @@ -161,3 +161,6 @@ main (void) return result; } + +#define TEST_FUNCTION do_test () +#include "../../test-skeleton.c" |