test/test-datatypes.c

Thu, 03 Sep 2026 12:13:05 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 03 Sep 2026 12:13:05 +0200
changeset 214
31d73d150c76
parent 194
619f07c95894
permissions
-rw-r--r--

make all should really build all (including the tests)

we removed the tests from the all-target initially
because they will cause warnings with compilers not
supporting C23

but we should not care too much about this

179
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 /*
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 *
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4 * Copyright 2026 Mike Becker. All rights reserved.
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 *
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 *
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 *
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15 *
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 *
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28 */
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
30 #include "chess/rules.h"
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
31
193
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
32 #if __STDC_VERSION__ < 201112L
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
33 #pragma GCC warning "Need at least C11 to compile test-datatypes.c"
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
34 #else
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
35 #if __STDC_VERSION__ < 202310L
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
36 #include <assert.h>
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
37 #endif
179
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38
193
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
39 static_assert(sizeof(Color) == 1);
194
619f07c95894 rename Row to Rank
Mike Becker <universe@uap-core.de>
parents: 193
diff changeset
40 static_assert(sizeof(Rank) == 1);
193
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
41 static_assert(sizeof(File) == 1);
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
42 static_assert(sizeof(Piece) == 1);
179
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
43
193
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
44 static_assert(sizeof(Board) == 64);
179
5ef724e21702 implement draw due to insufficient material
Mike Becker <universe@uap-core.de>
parents:
diff changeset
45
193
d1420f5c5704 increase type safety + add backwards compatibility including C99
Mike Becker <universe@uap-core.de>
parents: 179
diff changeset
46 #endif /* C11 */

mercurial