File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ checkdiff = test/diff/diff_cp_d_3_n_4_p_2.sh \
3939 test/diff/diff_nonradical_radicalshape-no-square-qq.sh \
4040 test/diff/diff_one-16.sh \
4141 test/diff/diff_one-31.sh \
42+ test/diff/diff_one-31-g1.sh \
4243 test/diff/diff_one-qq.sh \
4344 test/diff/diff_radical_shape-31.sh \
4445 test/diff/diff_radical_shape-qq.sh \
Original file line number Diff line number Diff line change @@ -189,6 +189,9 @@ AC_CONFIG_LINKS([
189189 output_files/kat8-qq-truncate.res:output_files/kat8-qq-truncate.res
190190 test/diff/diff_truncate_gb.sh:test/diff/diff_truncate_gb.sh
191191 input_files/one-31.ms:input_files/one-31.ms
192+ output_files/one-31.g1.res:output_files/one-31.g1.res
193+ test/diff/diff_one-31-g1.sh:test/diff/diff_one-31-g1.sh
194+ input_files/one-31.ms:input_files/one-31.ms
192195 output_files/one-31.res:output_files/one-31.res
193196 test/diff/diff_one-31.sh:test/diff/diff_one-31.sh
194197 input_files/one-qq.ms:input_files/one-qq.ms
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ file=one-31
4+
5+ $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
6+ -g 1 -l 2 -t 1
7+ if [ $? -gt 0 ]; then
8+ exit 3
9+ fi
10+
11+ diff test/diff/$file .res output_files/$file .g1.res
12+ if [ $? -gt 0 ]; then
13+ exit 4
14+ fi
15+
16+ $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
17+ -g 1 -l 2 -t 2
18+ if [ $? -gt 0 ]; then
19+ exit 23
20+ fi
21+
22+ diff test/diff/$file .res output_files/$file .g1.res
23+ if [ $? -gt 0 ]; then
24+ exit 24
25+ fi
26+
27+ $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
28+ -g 1 -l 44 -t 1
29+ if [ $? -gt 0 ]; then
30+ exit 43
31+ fi
32+
33+ diff test/diff/$file .res output_files/$file .g1.res
34+ if [ $? -gt 0 ]; then
35+ exit 44
36+ fi
37+
38+ $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
39+ -g 1 -l 44 -t 2
40+ if [ $? -gt 0 ]; then
41+ exit 63
42+ fi
43+
44+ diff test/diff/$file .res output_files/$file .g1.res
45+ if [ $? -gt 0 ]; then
46+ exit 64
47+ fi
48+
49+ rm test/diff/$file .res
50+
Original file line number Diff line number Diff line change 33file=one-31
44
55source test/diff/diff_source.sh
6-
7- $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
8- -g 1 -l 2 -t 1
9- if [ $? -gt 0 ]; then
10- exit 3
11- fi
12-
13- diff test/diff/$file .res output_files/$file .g1.res
14- if [ $? -gt 0 ]; then
15- exit 4
16- fi
17-
18- $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
19- -g 1 -l 2 -t 2
20- if [ $? -gt 0 ]; then
21- exit 23
22- fi
23-
24- diff test/diff/$file .res output_files/$file .g1.res
25- if [ $? -gt 0 ]; then
26- exit 24
27- fi
28-
29- $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
30- -g 1 -l 44 -t 1
31- if [ $? -gt 0 ]; then
32- exit 43
33- fi
34-
35- diff test/diff/$file .res output_files/$file .g1.res
36- if [ $? -gt 0 ]; then
37- exit 44
38- fi
39-
40- $( pwd) /msolve -f input_files/$file .ms -o test/diff/$file .res \
41- -g 1 -l 44 -t 2
42- if [ $? -gt 0 ]; then
43- exit 63
44- fi
45-
46- diff test/diff/$file .res output_files/$file .g1.res
47- if [ $? -gt 0 ]; then
48- exit 64
49- fi
50-
51- rm test/diff/$file .res
52-
You can’t perform that action at this time.
0 commit comments