aboutsummaryrefslogtreecommitdiff
path: root/test/077_copy_edges
diff options
context:
space:
mode:
Diffstat (limited to 'test/077_copy_edges')
-rw-r--r--test/077_copy_edges/00_solved_scrambled.in4
-rw-r--r--test/077_copy_edges/00_solved_scrambled.out2
-rw-r--r--test/077_copy_edges/copy_edges_tests.c6
3 files changed, 6 insertions, 6 deletions
diff --git a/test/077_copy_edges/00_solved_scrambled.in b/test/077_copy_edges/00_solved_scrambled.in
index 2ff0e6a..38c1566 100644
--- a/test/077_copy_edges/00_solved_scrambled.in
+++ b/test/077_copy_edges/00_solved_scrambled.in
@@ -1,2 +1,2 @@
1UF0 UB0 DB0 DF0 UR0 UL0 DL0 DR0 FR0 FL0 BL0 BR0 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 1ABCDEFGH=ABCDEFGHIJKL=A
2UL0 BL0 BR1 DL0 FR0 DF0 DB1 DR1 UB0 FL0 UF0 UR1 DFL0 UFR1 DBR1 UBR2 DBL2 DFR0 UFL1 UBL2 2CILVXGMR=FKbGIDSXBJAU=A
diff --git a/test/077_copy_edges/00_solved_scrambled.out b/test/077_copy_edges/00_solved_scrambled.out
index 3af84f4..0d38603 100644
--- a/test/077_copy_edges/00_solved_scrambled.out
+++ b/test/077_copy_edges/00_solved_scrambled.out
@@ -1 +1 @@
UL0 BL0 BR1 DL0 FR0 DF0 DB1 DR1 UB0 FL0 UF0 UR1 UFR0 UBL0 DFL0 DBR0 UFL0 UBR0 DFR0 DBL0 ABCDEFGH=FKbGIDSXBJAU=A
diff --git a/test/077_copy_edges/copy_edges_tests.c b/test/077_copy_edges/copy_edges_tests.c
index 48c5c53..36e32af 100644
--- a/test/077_copy_edges/copy_edges_tests.c
+++ b/test/077_copy_edges/copy_edges_tests.c
@@ -7,10 +7,10 @@ void run(void) {
7 cube_t c1, c2; 7 cube_t c1, c2;
8 8
9 fgets(str, STRLENMAX, stdin); 9 fgets(str, STRLENMAX, stdin);
10 c1 = readcube("H48", str); 10 c1 = readcube(str);
11 11
12 fgets(str, STRLENMAX, stdin); 12 fgets(str, STRLENMAX, stdin);
13 c2 = readcube("H48", str); 13 c2 = readcube(str);
14 14
15 copy_edges(&c1, c2); 15 copy_edges(&c1, c2);
16 16
@@ -19,7 +19,7 @@ void run(void) {
19 } else if (!isconsistent(c1)) { 19 } else if (!isconsistent(c1)) {
20 printf("Setting EO resulted in inconsistent cube\n"); 20 printf("Setting EO resulted in inconsistent cube\n");
21 } else { 21 } else {
22 writecube("H48", c1, NISSY_SIZE_H48, str); 22 writecube(c1, NISSY_SIZE_CUBE, str);
23 printf("%s\n", str); 23 printf("%s\n", str);
24 } 24 }
25} 25}

Generated with cgit - Back to sebastiano.tronto.net