aboutsummaryrefslogtreecommitdiff
path: root/test/081_getcube/getcube_tests.c
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2025-07-17 08:54:44 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2025-07-17 08:54:44 +0200
commit270e5b0444f67781856bf80db51650af9cb89b0c (patch)
tree1f895ca8fdbf256dcdf550dd0a28ca99993efc08 /test/081_getcube/getcube_tests.c
parent2d0ab15ac1f81c76cb6bb31bbdad3d2ee339e062 (diff)
downloadnissy-core-270e5b0444f67781856bf80db51650af9cb89b0c.tar.gz
nissy-core-270e5b0444f67781856bf80db51650af9cb89b0c.zip
Renamed tests to make space for more coordinate tests
Diffstat (limited to 'test/081_getcube/getcube_tests.c')
-rw-r--r--test/081_getcube/getcube_tests.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/081_getcube/getcube_tests.c b/test/081_getcube/getcube_tests.c
deleted file mode 100644
index 07e621e..0000000
--- a/test/081_getcube/getcube_tests.c
+++ /dev/null
@@ -1,32 +0,0 @@
1#include "../test.h"
2
3cube_t getcube(int64_t, int64_t, int64_t, int64_t);
4
5void run(void) {
6 char str[STRLENMAX];
7 oriented_cube_t cube;
8 int64_t ep, eo, cp, co;
9
10 fgets(str, STRLENMAX, stdin);
11 ep = atoll(str);
12 fgets(str, STRLENMAX, stdin);
13 eo = atoll(str);
14 fgets(str, STRLENMAX, stdin);
15 cp = atoll(str);
16 fgets(str, STRLENMAX, stdin);
17 co = atoll(str);
18
19 cube = (oriented_cube_t) {
20 .cube = getcube(ep, eo, cp, co),
21 .orientation = 0
22 };
23
24 if (iserror(cube)) {
25 printf("Error cube\n");
26 } else if (!isconsistent(cube)) {
27 printf("Inconsistent cube\n");
28 } else {
29 writecube(cube, NISSY_SIZE_CUBE, str);
30 printf("%s\n", str);
31 }
32}

Generated with cgit - Back to sebastiano.tronto.net