summaryrefslogtreecommitdiff
path: root/tests/generated.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generated.c')
-rw-r--r--tests/generated.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/generated.c b/tests/generated.c
index 43145e0..f2ee156 100644
--- a/tests/generated.c
+++ b/tests/generated.c
@@ -3,13 +3,14 @@
#include "../src/engine/moves/king.c"
#include "../src/uci/command.c"
-int total_test_count = 9;
-bool (*tests[9])(void) = {
+int total_test_count = 10;
+bool (*tests[10])(void) = {
test_fen_no_passant,
test_fen_passant,
test_starting_position,
test_perft_starting_position,
test_perft_kiwipete_position,
+ test_perft_position3,
test_white_king_corners,
test_black_king_corners,
test_uci_cmd_t,
@@ -17,12 +18,13 @@ bool (*tests[9])(void) = {
};
int max_test_name_size = 23;
-char test_names[9][100] = {
+char test_names[10][100] = {
"fen_no_passant",
"fen_passant",
"starting_position",
"perft_starting_position",
"perft_kiwipete_position",
+ "perft_position3",
"white_king_corners",
"black_king_corners",
"uci_cmd_t",