unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] x86-64: Update tst-glibc-hwcaps-2.c for x86-64 baseline
@ 2021-01-22  0:49 H.J. Lu via Libc-alpha
  2021-01-22 15:01 ` H.J. Lu via Libc-alpha
  0 siblings, 1 reply; 3+ messages in thread
From: H.J. Lu via Libc-alpha @ 2021-01-22  0:49 UTC (permalink / raw)
  To: libc-alpha

Return EXIT_FAILURE only if the level 2 libx86-64-isa-level.so is used
on x86-64 baseline machine.
---
 sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c b/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
index 2d8f7ec462..b223420089 100644
--- a/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
+++ b/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
@@ -51,7 +51,7 @@ do_test (void)
     case 2:
       /* The default libx86-64-isa-level.so is used.  */
       printf ("The default shared library is used.\n");
-      if (has_isa_v3 || has_isa_v4 || !has_isa_v2)
+      if (has_isa_v3 || has_isa_v4 || (!has_isa_v2 && level == 2))
 	ret = EXIT_FAILURE;
       else
 	ret = EXIT_SUCCESS;
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86-64: Update tst-glibc-hwcaps-2.c for x86-64 baseline
  2021-01-22  0:49 [PATCH] x86-64: Update tst-glibc-hwcaps-2.c for x86-64 baseline H.J. Lu via Libc-alpha
@ 2021-01-22 15:01 ` H.J. Lu via Libc-alpha
  2021-01-22 16:56   ` Adhemerval Zanella via Libc-alpha
  0 siblings, 1 reply; 3+ messages in thread
From: H.J. Lu via Libc-alpha @ 2021-01-22 15:01 UTC (permalink / raw)
  To: GNU C Library

On Thu, Jan 21, 2021 at 4:49 PM H.J. Lu <hjl.tools@gmail.com> wrote:
>
> Return EXIT_FAILURE only if the level 2 libx86-64-isa-level.so is used
> on x86-64 baseline machine.
> ---
>  sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c b/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
> index 2d8f7ec462..b223420089 100644
> --- a/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
> +++ b/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
> @@ -51,7 +51,7 @@ do_test (void)
>      case 2:
>        /* The default libx86-64-isa-level.so is used.  */
>        printf ("The default shared library is used.\n");
> -      if (has_isa_v3 || has_isa_v4 || !has_isa_v2)
> +      if (has_isa_v3 || has_isa_v4 || (!has_isa_v2 && level == 2))
>         ret = EXIT_FAILURE;
>        else
>         ret = EXIT_SUCCESS;
> --
> 2.29.2
>

I am checking it in.

-- 
H.J.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86-64: Update tst-glibc-hwcaps-2.c for x86-64 baseline
  2021-01-22 15:01 ` H.J. Lu via Libc-alpha
@ 2021-01-22 16:56   ` Adhemerval Zanella via Libc-alpha
  0 siblings, 0 replies; 3+ messages in thread
From: Adhemerval Zanella via Libc-alpha @ 2021-01-22 16:56 UTC (permalink / raw)
  To: libc-alpha



On 22/01/2021 12:01, H.J. Lu via Libc-alpha wrote:
> On Thu, Jan 21, 2021 at 4:49 PM H.J. Lu <hjl.tools@gmail.com> wrote:
>>
>> Return EXIT_FAILURE only if the level 2 libx86-64-isa-level.so is used
>> on x86-64 baseline machine.
>> ---
>>  sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c b/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
>> index 2d8f7ec462..b223420089 100644
>> --- a/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
>> +++ b/sysdeps/unix/sysv/linux/x86_64/tst-glibc-hwcaps-2.c
>> @@ -51,7 +51,7 @@ do_test (void)
>>      case 2:
>>        /* The default libx86-64-isa-level.so is used.  */
>>        printf ("The default shared library is used.\n");
>> -      if (has_isa_v3 || has_isa_v4 || !has_isa_v2)
>> +      if (has_isa_v3 || has_isa_v4 || (!has_isa_v2 && level == 2))
>>         ret = EXIT_FAILURE;
>>        else
>>         ret = EXIT_SUCCESS;
>> --
>> 2.29.2

Ok for 2.33.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-01-22 16:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-22  0:49 [PATCH] x86-64: Update tst-glibc-hwcaps-2.c for x86-64 baseline H.J. Lu via Libc-alpha
2021-01-22 15:01 ` H.J. Lu via Libc-alpha
2021-01-22 16:56   ` Adhemerval Zanella via Libc-alpha

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).