public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r12-4442] openmp: Improve testsuite/libgomp.c/affinity-1.c testcase
Date: Fri, 15 Oct 2021 15:21:32 +0000 (GMT)	[thread overview]
Message-ID: <20211015152132.C5113385842E@sourceware.org> (raw)

https://gcc.gnu.org/g:a10794eafb151b9274d673dfae93459d437cbe4a

commit r12-4442-ga10794eafb151b9274d673dfae93459d437cbe4a
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Fri Oct 15 17:19:54 2021 +0200

    openmp: Improve testsuite/libgomp.c/affinity-1.c testcase
    
    I've noticed that while I have added hopefully sufficient test coverage
    for the case where one uses simple number or !number as p-interval,
    I haven't added any coverage for number:len:stride or number:len.
    
    This patch adds that.
    
    2021-10-15  Jakub Jelinek  <jakub@redhat.com>
    
            * testsuite/libgomp.c/affinity-1.c (struct places): Change name field
            type from char [50] to const char *.
            (places_array): Add a testcase for simplified syntax place followed
            by length or length and stride.

Diff:
---
 libgomp/testsuite/libgomp.c/affinity-1.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/libgomp/testsuite/libgomp.c/affinity-1.c b/libgomp/testsuite/libgomp.c/affinity-1.c
index 1039e3b9c96..085526db634 100644
--- a/libgomp/testsuite/libgomp.c/affinity-1.c
+++ b/libgomp/testsuite/libgomp.c/affinity-1.c
@@ -48,7 +48,7 @@ struct place
 };
 struct places
 {
-  char name[50];
+  const char *name;
   int count;
   struct place places[8];
 } places_array[] = {
@@ -63,7 +63,8 @@ struct places
       { 4, 1 }, { 5, 1 }, { 6, 1 }, { 7, 1 } } },
   { "{0,1},{3,2,4},{6,5,!6},{6},{7:2:-1,!6}", 5,
     { { 0, 2 }, { 2, 3 }, { 5, 1 }, { 6, 1 }, { 7, 1 } } },
-  { "1,2,{2,3,!2},3,3,!3,!{5:3:-1,!4,!5},{4},5,!4,!5", 3,
+  { "1,2,{2,3,!2},3,3,!3,!{5:3:-1,!4,!5},{4},5,!4,!5,"
+    "1:2,!{1},!2,7:3:-2,!{5},!7,!3", 3,
     { { 1, 1 }, { 2, 1 }, { 3, 1 } } }
 };


                 reply	other threads:[~2021-10-15 15:21 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211015152132.C5113385842E@sourceware.org \
    --to=jakub@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).