test/test-real-pgn.c

Fri, 14 Aug 2026 13:40:26 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 14 Aug 2026 13:40:26 +0200
changeset 173
e541b6002933
parent 172
ba1bf80d10cc
permissions
-rw-r--r--

implement first naive draw by threefold repetition

partially resolves #843

149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 /*
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 *
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4 * Copyright 2026 Mike Becker. All rights reserved.
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 *
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 *
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
11 *
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
15 *
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ea2448961441 add 150 example games to test PGN parser
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
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
27 *
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
28 */
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
29
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
30 #include "ucxtest.h"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
31 #include "chess/pgn.h"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
32
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
33 #if __STDC_VERSION__ < 202310L
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
34 #error Need C23 compiler to compile this test.
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
35 #endif
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
36
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
37 const char pgn_data[150][1500];
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
38
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
39 /* we have no clock info here, resign also includes running out of clock */
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
40 enum expected_result {
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
41 EXPECTED_WRESIGN,
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
42 EXPECTED_BRESIGN,
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
43 EXPECTED_CHECKMATE,
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
44 EXPECTED_STALEMATE,
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
45 EXPECTED_THREEFOLD,
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
46 EXPECTED_NOMATERIAL,
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
47 };
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
48
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
49 static CX_TEST_SUBROUTINE(verify_expected_result,
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
50 const GameState *gs, enum expected_result rs) {
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
51 CX_TEST_ASSERT(gs->wresign == (rs == EXPECTED_WRESIGN));
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
52 CX_TEST_ASSERT(gs->bresign == (rs == EXPECTED_BRESIGN));
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
53 CX_TEST_ASSERT(gs->stalemate == (rs == EXPECTED_STALEMATE));
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
54 CX_TEST_ASSERT(gs->checkmate == (rs == EXPECTED_CHECKMATE));
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
55 CX_TEST_ASSERT(gs->threefold == (rs == EXPECTED_THREEFOLD));
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
56 CX_TEST_ASSERT(!gs->remis); /* no draw offers in example games */
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
57 // TODO: implement insufficient material detection
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
58
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
59 const Move *last_move = &gs->moves[gs->movecount-1];
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
60 CX_TEST_ASSERT((last_move->checkmate == 1) == (rs == EXPECTED_CHECKMATE));
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
61 }
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
62
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
63 static CX_TEST(test_real_pgn) {
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
64 static unsigned index = 0;
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
65 ++index;
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
66 GameState gamestate;
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
67 gamestate_init(&gamestate);
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
68 CX_TEST_DO {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
69 const enum expected_result rs = pgn_data[index-1][0];
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
70 const char *pgn = pgn_data[index-1]+1;
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
71 int result = parse_pgn(pgn, &gamestate);
150
7d57a252948e fix regression: position reporting about PGN errors
Mike Becker <universe@uap-core.de>
parents: 149
diff changeset
72 char msg[64];
7d57a252948e fix regression: position reporting about PGN errors
Mike Becker <universe@uap-core.de>
parents: 149
diff changeset
73 sprintf(msg, "failed to parse game%03u.pgn: code %d, pos: %zu",
7d57a252948e fix regression: position reporting about PGN errors
Mike Becker <universe@uap-core.de>
parents: 149
diff changeset
74 index, result, pgn_error_position());
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
75 CX_TEST_ASSERTM(result == pgn_no_error, msg);
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
76 CX_TEST_CALL_SUBROUTINE(verify_expected_result, &gamestate, rs);
159
07c7be5661f4 add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents: 150
diff changeset
77 }
07c7be5661f4 add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents: 150
diff changeset
78 gamestate_cleanup(&gamestate);
07c7be5661f4 add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents: 150
diff changeset
79 }
07c7be5661f4 add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents: 150
diff changeset
80
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
81 CxTestSuite* test_real_pgn_suite(void) {
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
82 CxTestSuite* suite = cx_test_suite_new("Real PGN Files");
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
83 for (unsigned i = 0 ; i < 150 ; i++) {
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
84 cx_test_register(suite, test_real_pgn);
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
85 }
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
86 return suite;
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
87 }
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
88
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
89 const char pgn_data[150][1500] = {
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
90 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
91 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
92 #embed "data/game001.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
93 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
94 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
95 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
96 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
97 #embed "data/game002.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
98 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
99 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
100 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
101 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
102 #embed "data/game003.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
103 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
104 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
105 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
106 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
107 #embed "data/game004.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
108 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
109 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
110 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
111 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
112 #embed "data/game005.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
113 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
114 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
115 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
116 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
117 #embed "data/game006.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
118 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
119 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
120 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
121 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
122 #embed "data/game007.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
123 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
124 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
125 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
126 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
127 #embed "data/game008.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
128 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
129 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
130 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
131 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
132 #embed "data/game009.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
133 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
134 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
135 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
136 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
137 #embed "data/game010.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
138 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
139 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
140 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
141 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
142 #embed "data/game011.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
143 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
144 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
145 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
146 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
147 #embed "data/game012.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
148 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
149 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
150 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
151 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
152 #embed "data/game013.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
153 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
154 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
155 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
156 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
157 #embed "data/game014.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
158 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
159 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
160 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
161 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
162 #embed "data/game015.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
163 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
164 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
165 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
166 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
167 #embed "data/game016.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
168 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
169 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
170 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
171 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
172 #embed "data/game017.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
173 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
174 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
175 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
176 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
177 #embed "data/game018.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
178 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
179 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
180 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
181 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
182 #embed "data/game019.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
183 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
184 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
185 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
186 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
187 #embed "data/game020.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
188 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
189 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
190 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
191 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
192 #embed "data/game021.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
193 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
194 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
195 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
196 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
197 #embed "data/game022.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
198 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
199 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
200 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
201 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
202 #embed "data/game023.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
203 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
204 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
205 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
206 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
207 #embed "data/game024.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
208 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
209 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
210 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
211 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
212 #embed "data/game025.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
213 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
214 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
215 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
216 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
217 #embed "data/game026.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
218 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
219 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
220 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
221 EXPECTED_THREEFOLD,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
222 #embed "data/game027.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
223 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
224 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
225 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
226 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
227 #embed "data/game028.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
228 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
229 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
230 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
231 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
232 #embed "data/game029.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
233 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
234 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
235 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
236 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
237 #embed "data/game030.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
238 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
239 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
240 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
241 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
242 #embed "data/game031.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
243 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
244 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
245 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
246 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
247 #embed "data/game032.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
248 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
249 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
250 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
251 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
252 #embed "data/game033.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
253 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
254 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
255 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
256 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
257 #embed "data/game034.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
258 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
259 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
260 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
261 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
262 #embed "data/game035.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
263 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
264 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
265 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
266 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
267 #embed "data/game036.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
268 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
269 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
270 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
271 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
272 #embed "data/game037.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
273 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
274 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
275 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
276 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
277 #embed "data/game038.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
278 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
279 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
280 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
281 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
282 #embed "data/game039.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
283 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
284 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
285 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
286 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
287 #embed "data/game040.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
288 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
289 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
290 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
291 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
292 #embed "data/game041.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
293 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
294 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
295 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
296 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
297 #embed "data/game042.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
298 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
299 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
300 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
301 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
302 #embed "data/game043.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
303 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
304 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
305 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
306 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
307 #embed "data/game044.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
308 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
309 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
310 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
311 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
312 #embed "data/game045.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
313 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
314 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
315 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
316 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
317 #embed "data/game046.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
318 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
319 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
320 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
321 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
322 #embed "data/game047.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
323 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
324 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
325 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
326 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
327 #embed "data/game048.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
328 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
329 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
330 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
331 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
332 #embed "data/game049.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
333 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
334 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
335 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
336 EXPECTED_THREEFOLD,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
337 #embed "data/game050.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
338 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
339 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
340 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
341 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
342 #embed "data/game051.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
343 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
344 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
345 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
346 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
347 #embed "data/game052.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
348 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
349 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
350 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
351 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
352 #embed "data/game053.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
353 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
354 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
355 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
356 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
357 #embed "data/game054.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
358 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
359 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
360 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
361 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
362 #embed "data/game055.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
363 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
364 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
365 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
366 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
367 #embed "data/game056.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
368 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
369 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
370 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
371 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
372 #embed "data/game057.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
373 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
374 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
375 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
376 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
377 #embed "data/game058.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
378 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
379 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
380 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
381 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
382 #embed "data/game059.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
383 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
384 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
385 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
386 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
387 #embed "data/game060.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
388 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
389 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
390 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
391 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
392 #embed "data/game061.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
393 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
394 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
395 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
396 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
397 #embed "data/game062.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
398 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
399 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
400 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
401 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
402 #embed "data/game063.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
403 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
404 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
405 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
406 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
407 #embed "data/game064.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
408 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
409 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
410 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
411 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
412 #embed "data/game065.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
413 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
414 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
415 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
416 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
417 #embed "data/game066.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
418 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
419 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
420 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
421 EXPECTED_THREEFOLD,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
422 #embed "data/game067.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
423 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
424 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
425 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
426 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
427 #embed "data/game068.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
428 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
429 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
430 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
431 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
432 #embed "data/game069.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
433 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
434 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
435 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
436 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
437 #embed "data/game070.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
438 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
439 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
440 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
441 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
442 #embed "data/game071.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
443 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
444 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
445 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
446 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
447 #embed "data/game072.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
448 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
449 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
450 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
451 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
452 #embed "data/game073.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
453 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
454 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
455 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
456 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
457 #embed "data/game074.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
458 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
459 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
460 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
461 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
462 #embed "data/game075.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
463 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
464 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
465 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
466 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
467 #embed "data/game076.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
468 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
469 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
470 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
471 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
472 #embed "data/game077.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
473 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
474 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
475 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
476 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
477 #embed "data/game078.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
478 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
479 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
480 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
481 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
482 #embed "data/game079.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
483 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
484 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
485 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
486 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
487 #embed "data/game080.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
488 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
489 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
490 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
491 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
492 #embed "data/game081.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
493 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
494 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
495 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
496 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
497 #embed "data/game082.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
498 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
499 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
500 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
501 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
502 #embed "data/game083.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
503 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
504 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
505 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
506 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
507 #embed "data/game084.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
508 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
509 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
510 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
511 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
512 #embed "data/game085.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
513 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
514 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
515 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
516 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
517 #embed "data/game086.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
518 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
519 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
520 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
521 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
522 #embed "data/game087.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
523 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
524 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
525 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
526 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
527 #embed "data/game088.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
528 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
529 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
530 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
531 EXPECTED_NOMATERIAL,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
532 #embed "data/game089.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
533 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
534 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
535 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
536 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
537 #embed "data/game090.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
538 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
539 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
540 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
541 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
542 #embed "data/game091.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
543 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
544 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
545 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
546 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
547 #embed "data/game092.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
548 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
549 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
550 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
551 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
552 #embed "data/game093.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
553 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
554 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
555 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
556 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
557 #embed "data/game094.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
558 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
559 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
560 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
561 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
562 #embed "data/game095.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
563 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
564 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
565 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
566 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
567 #embed "data/game096.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
568 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
569 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
570 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
571 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
572 #embed "data/game097.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
573 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
574 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
575 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
576 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
577 #embed "data/game098.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
578 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
579 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
580 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
581 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
582 #embed "data/game099.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
583 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
584 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
585 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
586 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
587 #embed "data/game100.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
588 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
589 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
590 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
591 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
592 #embed "data/game101.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
593 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
594 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
595 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
596 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
597 #embed "data/game102.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
598 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
599 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
600 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
601 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
602 #embed "data/game103.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
603 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
604 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
605 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
606 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
607 #embed "data/game104.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
608 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
609 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
610 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
611 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
612 #embed "data/game105.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
613 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
614 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
615 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
616 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
617 #embed "data/game106.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
618 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
619 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
620 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
621 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
622 #embed "data/game107.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
623 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
624 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
625 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
626 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
627 #embed "data/game108.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
628 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
629 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
630 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
631 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
632 #embed "data/game109.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
633 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
634 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
635 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
636 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
637 #embed "data/game110.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
638 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
639 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
640 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
641 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
642 #embed "data/game111.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
643 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
644 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
645 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
646 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
647 #embed "data/game112.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
648 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
649 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
650 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
651 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
652 #embed "data/game113.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
653 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
654 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
655 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
656 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
657 #embed "data/game114.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
658 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
659 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
660 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
661 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
662 #embed "data/game115.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
663 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
664 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
665 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
666 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
667 #embed "data/game116.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
668 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
669 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
670 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
671 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
672 #embed "data/game117.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
673 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
674 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
675 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
676 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
677 #embed "data/game118.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
678 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
679 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
680 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
681 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
682 #embed "data/game119.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
683 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
684 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
685 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
686 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
687 #embed "data/game120.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
688 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
689 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
690 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
691 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
692 #embed "data/game121.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
693 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
694 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
695 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
696 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
697 #embed "data/game122.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
698 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
699 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
700 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
701 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
702 #embed "data/game123.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
703 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
704 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
705 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
706 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
707 #embed "data/game124.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
708 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
709 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
710 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
711 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
712 #embed "data/game125.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
713 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
714 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
715 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
716 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
717 #embed "data/game126.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
718 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
719 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
720 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
721 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
722 #embed "data/game127.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
723 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
724 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
725 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
726 EXPECTED_STALEMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
727 #embed "data/game128.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
728 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
729 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
730 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
731 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
732 #embed "data/game129.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
733 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
734 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
735 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
736 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
737 #embed "data/game130.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
738 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
739 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
740 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
741 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
742 #embed "data/game131.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
743 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
744 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
745 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
746 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
747 #embed "data/game132.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
748 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
749 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
750 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
751 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
752 #embed "data/game133.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
753 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
754 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
755 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
756 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
757 #embed "data/game134.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
758 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
759 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
760 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
761 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
762 #embed "data/game135.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
763 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
764 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
765 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
766 EXPECTED_CHECKMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
767 #embed "data/game136.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
768 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
769 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
770 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
771 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
772 #embed "data/game137.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
773 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
774 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
775 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
776 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
777 #embed "data/game138.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
778 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
779 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
780 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
781 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
782 #embed "data/game139.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
783 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
784 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
785 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
786 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
787 #embed "data/game140.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
788 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
789 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
790 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
791 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
792 #embed "data/game141.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
793 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
794 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
795 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
796 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
797 #embed "data/game142.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
798 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
799 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
800 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
801 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
802 #embed "data/game143.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
803 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
804 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
805 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
806 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
807 #embed "data/game144.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
808 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
809 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
810 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
811 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
812 #embed "data/game145.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
813 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
814 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
815 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
816 EXPECTED_STALEMATE,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
817 #embed "data/game146.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
818 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
819 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
820 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
821 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
822 #embed "data/game147.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
823 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
824 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
825 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
826 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
827 #embed "data/game148.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
828 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
829 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
830 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
831 EXPECTED_WRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
832 #embed "data/game149.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
833 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
834 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
835 {
171
09f18c3316f9 add expected game result to test-real-pgn suite
Mike Becker <universe@uap-core.de>
parents: 170
diff changeset
836 EXPECTED_BRESIGN,
149
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
837 #embed "data/game150.pgn"
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
838 , '\0'
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
839 },
ea2448961441 add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff changeset
840 };

mercurial