Tue, 28 Jul 2026 13:44:10 +0200
add another game to test stalemate detection
relates to #947
|
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 | |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
39 | static CX_TEST(test_real_pgn) { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
40 | static unsigned index = 0; |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
41 | ++index; |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
42 | GameState gamestate; |
|
159
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
43 | // TODO: fix that we need an initialized game state for parsing PGNs |
|
149
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
44 | gamestate_init(&gamestate); |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
45 | CX_TEST_DO { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
46 | int result = parse_pgn(pgn_data[index-1], &gamestate); |
|
150
7d57a252948e
fix regression: position reporting about PGN errors
Mike Becker <universe@uap-core.de>
parents:
149
diff
changeset
|
47 | char msg[64]; |
|
7d57a252948e
fix regression: position reporting about PGN errors
Mike Becker <universe@uap-core.de>
parents:
149
diff
changeset
|
48 | 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
|
49 | index, result, pgn_error_position()); |
|
149
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
50 | CX_TEST_ASSERTM(result == pgn_no_error, msg); |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
51 | } |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
52 | gamestate_cleanup(&gamestate); |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
53 | } |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
54 | |
|
159
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
55 | static CX_TEST_SUBROUTINE(test_real_pgn_stalemate_sub, |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
56 | GameState *gamestate, int game) { |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
57 | // TODO: fix that we need an initialized game state for parsing PGNs |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
58 | gamestate_init(gamestate); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
59 | CX_TEST_ASSERT(0 == parse_pgn(pgn_data[game], gamestate)); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
60 | CX_TEST_ASSERT(gamestate->stalemate); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
61 | CX_TEST_ASSERT(!gamestate->wresign); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
62 | CX_TEST_ASSERT(!gamestate->bresign); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
63 | CX_TEST_ASSERT(!gamestate->checkmate); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
64 | CX_TEST_ASSERT(!gamestate->remis); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
65 | CX_TEST_ASSERT(!gamestate->threefold); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
66 | gamestate_cleanup(gamestate); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
67 | } |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
68 | |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
69 | static CX_TEST(test_real_pgn_stalemate) { |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
70 | GameState gamestate; |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
71 | CX_TEST_DO { |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
72 | /* the below mentioned games end in stalemate position */ |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
73 | CX_TEST_CALL_SUBROUTINE(test_real_pgn_stalemate_sub, &gamestate, 128); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
74 | CX_TEST_CALL_SUBROUTINE(test_real_pgn_stalemate_sub, &gamestate, 146); |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
75 | } |
|
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
76 | gamestate_cleanup(&gamestate); |
|
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 | |
|
149
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
79 | CxTestSuite* test_real_pgn_suite(void) { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
80 | 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
|
81 | 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
|
82 | 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
|
83 | } |
|
159
07c7be5661f4
add another game to test stalemate detection
Mike Becker <universe@uap-core.de>
parents:
150
diff
changeset
|
84 | cx_test_register(suite, test_real_pgn_stalemate); |
|
149
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
85 | return suite; |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
86 | } |
|
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 | const char pgn_data[150][1500] = { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
89 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
90 | #embed "data/game001.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
91 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
92 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
93 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
94 | #embed "data/game002.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
95 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
96 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
97 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
98 | #embed "data/game003.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
99 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
100 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
101 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
102 | #embed "data/game004.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
106 | #embed "data/game005.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
107 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
108 | }, |
|
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 | #embed "data/game006.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
111 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
112 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
113 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
114 | #embed "data/game007.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
115 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
116 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
117 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
118 | #embed "data/game008.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
119 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
120 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
121 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
122 | #embed "data/game009.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
126 | #embed "data/game010.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
127 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
128 | }, |
|
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 | #embed "data/game011.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
131 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
132 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
133 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
134 | #embed "data/game012.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
135 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
136 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
137 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
138 | #embed "data/game013.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
139 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
140 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
141 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
142 | #embed "data/game014.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
146 | #embed "data/game015.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
147 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
148 | }, |
|
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 | #embed "data/game016.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
151 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
152 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
153 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
154 | #embed "data/game017.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
155 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
156 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
157 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
158 | #embed "data/game018.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
159 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
160 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
161 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
162 | #embed "data/game019.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
166 | #embed "data/game020.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
167 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
168 | }, |
|
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 | #embed "data/game021.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
171 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
172 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
173 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
174 | #embed "data/game022.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
175 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
176 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
177 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
178 | #embed "data/game023.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
179 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
180 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
181 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
182 | #embed "data/game024.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
186 | #embed "data/game025.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
187 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
188 | }, |
|
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 | #embed "data/game026.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
191 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
192 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
193 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
194 | #embed "data/game027.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
195 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
196 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
197 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
198 | #embed "data/game028.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
199 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
200 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
201 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
202 | #embed "data/game029.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
206 | #embed "data/game030.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
207 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
208 | }, |
|
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 | #embed "data/game031.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
211 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
212 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
213 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
214 | #embed "data/game032.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
215 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
216 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
217 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
218 | #embed "data/game033.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
219 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
220 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
221 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
222 | #embed "data/game034.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
226 | #embed "data/game035.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
227 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
228 | }, |
|
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 | #embed "data/game036.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
231 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
232 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
233 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
234 | #embed "data/game037.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
235 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
236 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
237 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
238 | #embed "data/game038.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
239 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
240 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
241 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
242 | #embed "data/game039.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
246 | #embed "data/game040.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
247 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
248 | }, |
|
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 | #embed "data/game041.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
251 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
252 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
253 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
254 | #embed "data/game042.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
255 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
256 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
257 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
258 | #embed "data/game043.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
259 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
260 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
261 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
262 | #embed "data/game044.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
266 | #embed "data/game045.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
267 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
268 | }, |
|
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 | #embed "data/game046.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
271 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
272 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
273 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
274 | #embed "data/game047.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
275 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
276 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
277 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
278 | #embed "data/game048.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
279 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
280 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
281 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
282 | #embed "data/game049.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
286 | #embed "data/game050.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
287 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
288 | }, |
|
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 | #embed "data/game051.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
291 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
292 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
293 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
294 | #embed "data/game052.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
295 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
296 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
297 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
298 | #embed "data/game053.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
299 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
300 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
301 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
302 | #embed "data/game054.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
306 | #embed "data/game055.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
307 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
308 | }, |
|
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 | #embed "data/game056.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
311 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
312 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
313 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
314 | #embed "data/game057.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
315 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
316 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
317 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
318 | #embed "data/game058.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
319 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
320 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
321 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
322 | #embed "data/game059.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
326 | #embed "data/game060.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
327 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
328 | }, |
|
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 | #embed "data/game061.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
331 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
332 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
333 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
334 | #embed "data/game062.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
335 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
336 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
337 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
338 | #embed "data/game063.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
339 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
340 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
341 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
342 | #embed "data/game064.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
346 | #embed "data/game065.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
347 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
348 | }, |
|
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 | #embed "data/game066.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
351 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
352 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
353 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
354 | #embed "data/game067.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
355 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
356 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
357 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
358 | #embed "data/game068.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
359 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
360 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
361 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
362 | #embed "data/game069.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
366 | #embed "data/game070.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
367 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
368 | }, |
|
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 | #embed "data/game071.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
371 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
372 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
373 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
374 | #embed "data/game072.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
375 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
376 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
377 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
378 | #embed "data/game073.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
379 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
380 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
381 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
382 | #embed "data/game074.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
386 | #embed "data/game075.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
387 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
388 | }, |
|
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 | #embed "data/game076.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
391 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
392 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
393 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
394 | #embed "data/game077.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
395 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
396 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
397 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
398 | #embed "data/game078.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
399 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
400 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
401 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
402 | #embed "data/game079.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
406 | #embed "data/game080.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
407 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
408 | }, |
|
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 | #embed "data/game081.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
411 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
412 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
413 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
414 | #embed "data/game082.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
415 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
416 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
417 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
418 | #embed "data/game083.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
419 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
420 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
421 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
422 | #embed "data/game084.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
426 | #embed "data/game085.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
427 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
428 | }, |
|
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 | #embed "data/game086.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
431 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
432 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
433 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
434 | #embed "data/game087.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
435 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
436 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
437 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
438 | #embed "data/game088.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
439 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
440 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
441 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
442 | #embed "data/game089.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
446 | #embed "data/game090.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
447 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
448 | }, |
|
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 | #embed "data/game091.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
451 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
452 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
453 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
454 | #embed "data/game092.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
455 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
456 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
457 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
458 | #embed "data/game093.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
459 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
460 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
461 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
462 | #embed "data/game094.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
466 | #embed "data/game095.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
467 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
468 | }, |
|
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 | #embed "data/game096.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
471 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
472 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
473 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
474 | #embed "data/game097.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
475 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
476 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
477 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
478 | #embed "data/game098.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
479 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
480 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
481 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
482 | #embed "data/game099.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
486 | #embed "data/game100.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
487 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
488 | }, |
|
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 | #embed "data/game101.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
491 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
492 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
493 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
494 | #embed "data/game102.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
495 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
496 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
497 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
498 | #embed "data/game103.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
499 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
500 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
501 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
502 | #embed "data/game104.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
506 | #embed "data/game105.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
507 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
508 | }, |
|
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 | #embed "data/game106.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
511 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
512 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
513 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
514 | #embed "data/game107.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
515 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
516 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
517 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
518 | #embed "data/game108.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
519 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
520 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
521 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
522 | #embed "data/game109.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
526 | #embed "data/game110.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
527 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
528 | }, |
|
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 | #embed "data/game111.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
531 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
532 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
533 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
534 | #embed "data/game112.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
535 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
536 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
537 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
538 | #embed "data/game113.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
539 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
540 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
541 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
542 | #embed "data/game114.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
546 | #embed "data/game115.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
547 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
548 | }, |
|
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 | #embed "data/game116.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
551 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
552 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
553 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
554 | #embed "data/game117.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
555 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
556 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
557 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
558 | #embed "data/game118.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
559 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
560 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
561 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
562 | #embed "data/game119.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
566 | #embed "data/game120.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
567 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
568 | }, |
|
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 | #embed "data/game121.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
571 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
572 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
573 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
574 | #embed "data/game122.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
575 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
576 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
577 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
578 | #embed "data/game123.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
579 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
580 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
581 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
582 | #embed "data/game124.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
586 | #embed "data/game125.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
587 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
588 | }, |
|
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 | #embed "data/game126.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
591 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
592 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
593 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
594 | #embed "data/game127.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
595 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
596 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
597 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
598 | #embed "data/game128.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
599 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
600 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
601 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
602 | #embed "data/game129.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
606 | #embed "data/game130.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
607 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
608 | }, |
|
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 | #embed "data/game131.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
611 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
612 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
613 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
614 | #embed "data/game132.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
615 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
616 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
617 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
618 | #embed "data/game133.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
619 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
620 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
621 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
622 | #embed "data/game134.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
626 | #embed "data/game135.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
627 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
628 | }, |
|
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 | #embed "data/game136.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
631 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
632 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
633 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
634 | #embed "data/game137.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
635 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
636 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
637 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
638 | #embed "data/game138.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
639 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
640 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
641 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
642 | #embed "data/game139.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
646 | #embed "data/game140.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
647 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
648 | }, |
|
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 | #embed "data/game141.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
651 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
652 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
653 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
654 | #embed "data/game142.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
655 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
656 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
657 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
658 | #embed "data/game143.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
659 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
660 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
661 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
662 | #embed "data/game144.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
666 | #embed "data/game145.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
667 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
668 | }, |
|
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 | #embed "data/game146.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
671 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
672 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
673 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
674 | #embed "data/game147.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
675 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
676 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
677 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
678 | #embed "data/game148.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
679 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
680 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
681 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
682 | #embed "data/game149.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 | { |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
686 | #embed "data/game150.pgn" |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
687 | , '\0' |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
688 | }, |
|
ea2448961441
add 150 example games to test PGN parser
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
689 | }; |