]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Testsuite, Darwin: actually skip test
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Mon, 11 Dec 2023 08:20:49 +0000 (09:20 +0100)
committerFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Mon, 11 Dec 2023 08:21:26 +0000 (09:21 +0100)
Previous commit xfailed instead of skipping, but we really
want to skip.

gcc/testsuite/ChangeLog:

* gcc.target/i386/libcall-1.c: Skip on darwin.

gcc/testsuite/gcc.target/i386/libcall-1.c

index a40ff5620fb17404a22121efefb351b0e105325f..cb95aca7a29a4395524f213c0f9d0e5f07ad155b 100644 (file)
@@ -4,6 +4,6 @@
 /* { dg-do compile { target int128 } } */
 /* { dg-options "-O2 -mcmodel=large" } */
 /* { dg-final { scan-assembler "globl\t__divti3" } } */
-/* { dg-xfail-if "PR90698" { *-*-darwin* } } */
+/* { dg-skip-if "PR90698" { *-*-darwin* } } */
 
 __int128 a, b; void foo () { a = a / b; }