diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-05-18 10:16:48 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-07-07 14:10:58 -0300 |
commit | c2723ce317f858f70237fc8866935114e2bb61b2 (patch) | |
tree | 95c47af1293d79a13d8af8edd66bebb75f35ce40 /string/Makefile | |
parent | 08d2024b4167913623cefcceb2fec6e483972868 (diff) | |
download | glibc-c2723ce317f858f70237fc8866935114e2bb61b2.tar.gz glibc-c2723ce317f858f70237fc8866935114e2bb61b2.tar.xz glibc-c2723ce317f858f70237fc8866935114e2bb61b2.zip |
string: Add strsignal test
Checked on x86-64-linux-gnu, i686-linux-gnu, powerpc64le-linux-gnu, and s390x-linux-gnu. Tested-by: Carlos O'Donell <carlos@redhat.com> Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'string/Makefile')
-rw-r--r-- | string/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/string/Makefile b/string/Makefile index e1cca5516b..5b67808475 100644 --- a/string/Makefile +++ b/string/Makefile @@ -60,7 +60,8 @@ tests := tester inl-tester noinl-tester testcopy test-ffs \ bug-envz1 tst-strxfrm2 tst-endian tst-svc2 \ tst-strtok_r bug-strcoll2 tst-cmp tst-xbzero-opt \ test-endian-types test-endian-file-scope \ - test-endian-sign-conversion tst-memmove-overflow + test-endian-sign-conversion tst-memmove-overflow \ + tst-strsignal # This test allocates a lot of memory and can run for a long time. xtests = tst-strcoll-overflow @@ -105,7 +106,7 @@ $(objpfx)tst-svc-cmp.out: tst-svc.expect $(objpfx)tst-svc.out LOCALES := de_DE.UTF-8 en_US.ISO-8859-1 en_US.UTF-8 \ tr_TR.ISO-8859-9 tr_TR.UTF-8 cs_CZ.UTF-8 \ - da_DK.ISO-8859-1 en_GB.UTF-8 + da_DK.ISO-8859-1 en_GB.UTF-8 pt_BR.UTF-8 include ../gen-locales.mk $(objpfx)test-strcasecmp.out: $(gen-locales) @@ -115,5 +116,6 @@ $(objpfx)tst-strxfrm2.out: $(gen-locales) # bug-strcoll2 needs cs_CZ.UTF-8 and da_DK.ISO-8859-1. $(objpfx)bug-strcoll2.out: $(gen-locales) $(objpfx)tst-strcoll-overflow.out: $(gen-locales) +$(objpfx)tst-strsignal.out: $(gen-locales) endif |