All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Vesely <jan.vesely@rutgers.edu>
To: dri-devel@lists.freedesktop.org
Cc: Emil Velikov <emil.l.velikov@gmail.com>
Subject: Re: [PATCH libdrm 1/1] drmsltest: Check expected neighbours
Date: Sun, 13 Aug 2017 22:44:18 -0400	[thread overview]
Message-ID: <1502678658.9772.3.camel@rutgers.edu> (raw)
In-Reply-To: <20170728142322.18783-1-jan.vesely@rutgers.edu>


[-- Attachment #1.1: Type: text/plain, Size: 2608 bytes --]

On Fri, 2017-07-28 at 10:23 -0400, Jan Vesely wrote:
> Fixes: 7d8c9464081634f053e16e5eac9655a12fae1dc4
> Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>

ping.
Emil, should I just drop this patch?
another alternative is to remove the list implementation entirely,
since nobody noticed when it got broken.

Jan

> ---
> 
> I thought I sent this out, but couldn't find it in sent mail.
> This tests the behaviour set in 3b2ee2b5bfc0d68525fee936e51297a9b6c629f1
> more than 2 years ago
> 
> Jan
> 
> 
>  tests/drmsl.c | 28 ++++++++++++++++++++--------
>  1 file changed, 20 insertions(+), 8 deletions(-)
> 
> diff --git a/tests/drmsl.c b/tests/drmsl.c
> index d0ac0efa..d1b59a86 100644
> --- a/tests/drmsl.c
> +++ b/tests/drmsl.c
> @@ -106,7 +106,9 @@ static double do_time(int size, int iter)
>      return usec;
>  }
>  
> -static void print_neighbors(void *list, unsigned long key)
> +static void print_neighbors(void *list, unsigned long key,
> +                            unsigned long expected_prev,
> +                            unsigned long expected_next)
>  {
>      unsigned long prev_key = 0;
>      unsigned long next_key = 0;
> @@ -119,6 +121,16 @@ static void print_neighbors(void *list, unsigned long key)
>  				  &next_key, &next_value);
>      printf("Neighbors of %5lu: %d %5lu %5lu\n",
>  	   key, retval, prev_key, next_key);
> +    if (prev_key != expected_prev) {
> +        fprintf(stderr, "Unexpected neighbor: %5lu. Expected: %5lu\n",
> +                prev_key, expected_prev);
> +	exit(1);
> +    }
> +    if (next_key != expected_next) {
> +        fprintf(stderr, "Unexpected neighbor: %5lu. Expected: %5lu\n",
> +                next_key, expected_next);
> +	exit(1);
> +    }
>  }
>  
>  int main(void)
> @@ -138,13 +150,13 @@ int main(void)
>      print(list);
>      printf("\n==============================\n\n");
>  
> -    print_neighbors(list, 0);
> -    print_neighbors(list, 50);
> -    print_neighbors(list, 51);
> -    print_neighbors(list, 123);
> -    print_neighbors(list, 200);
> -    print_neighbors(list, 213);
> -    print_neighbors(list, 256);
> +    print_neighbors(list, 0, 0, 50);
> +    print_neighbors(list, 50, 0, 50);
> +    print_neighbors(list, 51, 50, 123);
> +    print_neighbors(list, 123, 50, 123);
> +    print_neighbors(list, 200, 123, 213);
> +    print_neighbors(list, 213, 123, 213);
> +    print_neighbors(list, 256, 213, 256);
>      printf("\n==============================\n\n");
>  
>      drmSLDelete(list, 50);

-- 
Jan Vesely <jan.vesely@rutgers.edu>

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2017-08-14  2:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-28 14:23 [PATCH libdrm 1/1] drmsltest: Check expected neighbours Jan Vesely
2017-08-14  2:44 ` Jan Vesely [this message]
2017-08-16  1:51   ` Emil Velikov
2017-08-21 12:19     ` Emil Velikov
  -- strict thread matches above, loose matches on Subject: below --
2017-05-26 17:15 Jan Vesely

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=1502678658.9772.3.camel@rutgers.edu \
    --to=jan.vesely@rutgers.edu \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=emil.l.velikov@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.