aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/083_invcoord_epudsep/00_all.in0
-rw-r--r--test/083_invcoord_epudsep/00_all.out1
-rw-r--r--test/083_invcoord_epudsep/invcoord_epudsep_tests.c32
3 files changed, 33 insertions, 0 deletions
diff --git a/test/083_invcoord_epudsep/00_all.in b/test/083_invcoord_epudsep/00_all.in
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/test/083_invcoord_epudsep/00_all.in
diff --git a/test/083_invcoord_epudsep/00_all.out b/test/083_invcoord_epudsep/00_all.out
new file mode 100644
index 0000000..d6109db
--- /dev/null
+++ b/test/083_invcoord_epudsep/00_all.out
@@ -0,0 +1 @@
All good
diff --git a/test/083_invcoord_epudsep/invcoord_epudsep_tests.c b/test/083_invcoord_epudsep/invcoord_epudsep_tests.c
new file mode 100644
index 0000000..709e5d8
--- /dev/null
+++ b/test/083_invcoord_epudsep/invcoord_epudsep_tests.c
@@ -0,0 +1,32 @@
1#include "../test.h"
2
3#define COMB_8_4 70
4
5uint64_t coord_epudsep(cube_t);
6cube_t invcoord_epudsep(uint64_t);
7
8void run(void) {
9 oriented_cube_t cube;
10 uint64_t coord, coord2;
11
12 cube.orientation = 0;
13
14 /* Test all possible values for CP coordinate */
15 for (coord = 0; coord < COMB_8_4; coord++) {
16 cube.cube = invcoord_epudsep(coord);
17
18 if (!isconsistent(cube)) {
19 printf("Not consistent\n");
20 return;
21 }
22
23 coord2 = coord_epudsep(cube.cube);
24 if (coord != coord2) {
25 printf("Error: invcoord of %" PRIu64
26 " returns %" PRIu64 "\n", coord, coord2);
27 return;
28 }
29 }
30
31 printf("All good\n");
32}

Generated with cgit - Back to sebastiano.tronto.net