annotate tests/test-ffs.c @ 40057:b06060465f09

maint: Run 'make update-copyright'
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 01 Jan 2019 00:25:11 +0100
parents 10eb9086bea0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
1 /*
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
2 * Copyright (C) 2011-2019 Free Software Foundation, Inc.
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
3 *
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
4 * This program is free software: you can redistribute it and/or modify
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
6 * the Free Software Foundation; either version 3 of the License, or
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
7 * (at your option) any later version.
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
8 *
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
9 * This program is distributed in the hope that it will be useful,
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
12 * GNU General Public License for more details.
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
13 *
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
14 * You should have received a copy of the GNU General Public License
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 18626
diff changeset
15 * along with this program. If not, see <https://www.gnu.org/licenses/>. */
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
16
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
17 /* Written by Eric Blake. */
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
18 #include <config.h>
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
19
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
20 #include <strings.h>
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
21
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
22 #include "signature.h"
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
23 SIGNATURE_CHECK (ffs, int, (int));
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
24
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
25 #include <limits.h>
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
26
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
27 #include "macros.h"
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
28
15429
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
29 #define NBITS (sizeof (int) * CHAR_BIT)
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
30
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
31 static int
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
32 naive (int i)
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
33 {
15426
60c6b6da0198 ffs: avoid undefined behavior
Eric Blake <eblake@redhat.com>
parents: 15390
diff changeset
34 unsigned int j;
15429
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
35 for (j = 0; j < NBITS; j++)
15426
60c6b6da0198 ffs: avoid undefined behavior
Eric Blake <eblake@redhat.com>
parents: 15390
diff changeset
36 if (i & (1U << j))
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
37 return j + 1;
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
38 return 0;
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
39 }
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
40
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
41 int
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
42 main (int argc, char *argv[])
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
43 {
15429
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
44 int x;
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
45 int i;
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
46
15429
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
47 for (x = -128; x <= 128; x++)
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
48 ASSERT (ffs (x) == naive (x));
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
49 for (i = 0; i < NBITS; i++)
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
50 {
15426
60c6b6da0198 ffs: avoid undefined behavior
Eric Blake <eblake@redhat.com>
parents: 15390
diff changeset
51 ASSERT (ffs (1U << i) == naive (1U << i));
60c6b6da0198 ffs: avoid undefined behavior
Eric Blake <eblake@redhat.com>
parents: 15390
diff changeset
52 ASSERT (ffs (1U << i) == i + 1);
15429
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
53 ASSERT (ffs (-1U << i) == i + 1);
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
54 }
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
55 for (i = 0; i < NBITS - 1; i++)
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
56 {
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
57 ASSERT (ffs (3U << i) == i + 1);
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
58 ASSERT (ffs (-3U << i) == i + 1);
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
59 }
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
60 for (i = 0; i < NBITS - 2; i++)
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
61 {
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
62 ASSERT (ffs (5U << i) == i + 1);
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
63 ASSERT (ffs (-5U << i) == i + 1);
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
64 ASSERT (ffs (7U << i) == i + 1);
cb1d00b41a66 ffs: More tests.
Bruno Haible <bruno@clisp.org>
parents: 15426
diff changeset
65 ASSERT (ffs (-7U << i) == i + 1);
15390
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
66 }
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
67 return 0;
25fd80a52583 ffs: new module
Eric Blake <eblake@redhat.com>
parents:
diff changeset
68 }