Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Jun 13, 2024
1 parent a244340 commit 6694f03
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ jobs:
- name: Test
#working-directory: ${{ steps.strings.outputs.build-output-dir }}
run: |
pwd
ls test/puzzles/easy
xxd -b test/puzzles/easy/1.kkr
xxd -b test/puzzles/easy/2.kkr
xxd -b test/puzzles/easy/3.kkr
xxd -b test/puzzles/easy/4.kkr
xxd -b test/puzzles/easy/5.kkr
./build/test/unit/UNITTESTS
./build/test/blackbox/BLACKBOX
3 changes: 0 additions & 3 deletions test/blackbox/suites/easy/easy_unset.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ TEST easy_unset_one(void) {

FILE * fp = fopen(get_settings_singleton()->filepath, "rb");
ASSERTm("COULDN'T OPEN FILE", fp);
rewind(fp);
printf("FEOF: %d\n", feof(fp));
Kakuro board = init_kakuro(fp);
printf("BOARD SIZE: %u %u\n", board.game.size[ROW], board.game.size[COLUMN]);

fflush(stdout);
fclose(fp);
Expand Down

0 comments on commit 6694f03

Please sign in to comment.