summaryrefslogtreecommitdiff
path: root/tests/generated.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generated.c')
-rw-r--r--tests/generated.c23
1 files changed, 14 insertions, 9 deletions
diff --git a/tests/generated.c b/tests/generated.c
index 777f8b1..43145e0 100644
--- a/tests/generated.c
+++ b/tests/generated.c
@@ -1,25 +1,30 @@
-#include "../src/engine/fen.c"
+#include "../src/fen.c"
+#include "../src/engine/moves.c"
#include "../src/engine/moves/king.c"
#include "../src/uci/command.c"
-int total_test_count = 7;
-bool (*tests[7])(void) = {
+int total_test_count = 9;
+bool (*tests[9])(void) = {
test_fen_no_passant,
test_fen_passant,
test_starting_position,
+ test_perft_starting_position,
+ test_perft_kiwipete_position,
test_white_king_corners,
test_black_king_corners,
- test_ucicmd,
- test_invalid_cmd_ucicmd,
+ test_uci_cmd_t,
+ test_invalid_cmd_uci_cmd_t,
};
-int max_test_name_size = 18;
-char test_names[7][100] = {
+int max_test_name_size = 23;
+char test_names[9][100] = {
"fen_no_passant",
"fen_passant",
"starting_position",
+ "perft_starting_position",
+ "perft_kiwipete_position",
"white_king_corners",
"black_king_corners",
- "ucicmd",
- "invalid_cmd_ucicmd",
+ "uci_cmd_t",
+ "invalid_cmd_uci_cmd_t",
};