aboutsummaryrefslogtreecommitdiff
path: root/test/075_set_eo
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-05-27 12:04:53 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2024-05-27 12:04:53 +0200
commit49b9c4a516f72e03d53277075f4580e2df8f0e63 (patch)
treedea68649391d14d63a96e742b450c59681ac4305 /test/075_set_eo
parentfde8dfa9df8df1e3d42a9a8840836e33817cd498 (diff)
downloadnissy-core-49b9c4a516f72e03d53277075f4580e2df8f0e63.tar.gz
nissy-core-49b9c4a516f72e03d53277075f4580e2df8f0e63.zip
Some type fixes and some cleanup
Diffstat (limited to 'test/075_set_eo')
-rw-r--r--test/075_set_eo/set_eo_tests.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/075_set_eo/set_eo_tests.c b/test/075_set_eo/set_eo_tests.c
index 08c8ae8..cd4868c 100644
--- a/test/075_set_eo/set_eo_tests.c
+++ b/test/075_set_eo/set_eo_tests.c
@@ -22,9 +22,11 @@ int main(void) {
22 printf("Error setting EO\n"); 22 printf("Error setting EO\n");
23 } else if (!isconsistent(cube)) { 23 } else if (!isconsistent(cube)) {
24 fprintf(stderr, "edges: "); 24 fprintf(stderr, "edges: ");
25 for (int i = 0; i < 12; i++) fprintf(stderr, "%d ", cube.edge[i]); 25 for (int i = 0; i < 12; i++)
26 fprintf(stderr, "%d ", cube.edge[i]);
26 fprintf(stderr, "\n"); 27 fprintf(stderr, "\n");
27 for (int i = 0; i < 8; i++) fprintf(stderr, "%d ", cube.corner[i]); 28 for (int i = 0; i < 8; i++)
29 fprintf(stderr, "%d ", cube.corner[i]);
28 fprintf(stderr, "\n"); 30 fprintf(stderr, "\n");
29 printf("Setting EO resulted in inconsistent cube\n"); 31 printf("Setting EO resulted in inconsistent cube\n");
30 } else { 32 } else {

Generated with cgit - Back to sebastiano.tronto.net