Skip to content

Commit e27a6e9

Browse files
committed
tests: align arguments in invocations in columns
IMHO this makes it much easier to see that the arguments are all the same, and only the verb changes.
1 parent 36e7ee4 commit e27a6e9

File tree

2 files changed

+80
-80
lines changed

2 files changed

+80
-80
lines changed

test/test-cache.sh.in

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ rm casync/src/notify.*
5151
chmod +w casync/src/compressor.c
5252
echo xxx >>casync/src/compressor.c
5353

54-
@top_builddir@/casync list > $SCRATCH_DIR/testx.list
55-
@top_builddir@/casync mtree > $SCRATCH_DIR/testx.mtree
56-
@top_builddir@/casync digest > $SCRATCH_DIR/testx.digest
54+
@top_builddir@/casync list >$SCRATCH_DIR/testx.list
55+
@top_builddir@/casync mtree >$SCRATCH_DIR/testx.mtree
56+
@top_builddir@/casync digest >$SCRATCH_DIR/testx.digest
5757

5858
@top_builddir@/casync make $SCRATCH_DIR/test4.caidx
5959
@top_builddir@/casync make --cache $SCRATCH_DIR/test.cache $SCRATCH_DIR/test5.caidx
@@ -65,12 +65,12 @@ cmp $SCRATCH_DIR/test4.caidx $SCRATCH_DIR/test6.caidx
6565
cmp $SCRATCH_DIR/test4.caidx $SCRATCH_DIR/test7.caidx
6666

6767
for f in test4 test5 test6 test7; do
68-
@top_builddir@/casync list $SCRATCH_DIR/$f.caidx > $SCRATCH_DIR/$f.list
69-
@top_builddir@/casync mtree $SCRATCH_DIR/$f.caidx > $SCRATCH_DIR/$f.mtree
70-
@top_builddir@/casync digest $SCRATCH_DIR/$f.caidx > $SCRATCH_DIR/$f.digest
68+
@top_builddir@/casync list $SCRATCH_DIR/$f.caidx >$SCRATCH_DIR/$f.list
69+
@top_builddir@/casync mtree $SCRATCH_DIR/$f.caidx >$SCRATCH_DIR/$f.mtree
70+
@top_builddir@/casync digest $SCRATCH_DIR/$f.caidx >$SCRATCH_DIR/$f.digest
7171

72-
diff -q $SCRATCH_DIR/testx.list $SCRATCH_DIR/$f.list
73-
diff -q $SCRATCH_DIR/testx.mtree $SCRATCH_DIR/$f.mtree
72+
diff -q $SCRATCH_DIR/testx.list $SCRATCH_DIR/$f.list
73+
diff -q $SCRATCH_DIR/testx.mtree $SCRATCH_DIR/$f.mtree
7474
diff -q $SCRATCH_DIR/testx.digest $SCRATCH_DIR/$f.digest
7575
done
7676

test/test-script.sh.in

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ fi
2424

2525
cd $SCRATCH_DIR/src
2626

27-
@top_builddir@/casync $PARAMS list > $SCRATCH_DIR/test.list
28-
@top_builddir@/casync $PARAMS mtree > $SCRATCH_DIR/test.mtree
29-
@top_builddir@/casync $PARAMS digest > $SCRATCH_DIR/test.digest
30-
31-
@top_builddir@/casync $PARAMS make $SCRATCH_DIR/test.catar
32-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/test.catar > $SCRATCH_DIR/test.catar.list
33-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/test.catar > $SCRATCH_DIR/test.catar.mtree
34-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/test.catar > $SCRATCH_DIR/test.catar.digest
35-
@top_builddir@/test-calc-digest $DIGEST $SCRATCH_DIR/test.catar > $SCRATCH_DIR/test.catar.digest2
36-
37-
@top_builddir@/casync $PARAMS make $SCRATCH_DIR/test.caidx
38-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/test.caidx > $SCRATCH_DIR/test.caidx.list
39-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/test.caidx > $SCRATCH_DIR/test.caidx.mtree
40-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/test.caidx > $SCRATCH_DIR/test.caidx.digest
41-
42-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test.catar.list
43-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test.caidx.list
44-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test.catar.mtree
45-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test.caidx.mtree
27+
@top_builddir@/casync $PARAMS list >$SCRATCH_DIR/test.list
28+
@top_builddir@/casync $PARAMS mtree >$SCRATCH_DIR/test.mtree
29+
@top_builddir@/casync $PARAMS digest >$SCRATCH_DIR/test.digest
30+
31+
@top_builddir@/casync $PARAMS make $SCRATCH_DIR/test.catar
32+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/test.catar >$SCRATCH_DIR/test.catar.list
33+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/test.catar >$SCRATCH_DIR/test.catar.mtree
34+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/test.catar >$SCRATCH_DIR/test.catar.digest
35+
@top_builddir@/test-calc-digest $DIGEST $SCRATCH_DIR/test.catar >$SCRATCH_DIR/test.catar.digest2
36+
37+
@top_builddir@/casync $PARAMS $DIRS make $SCRATCH_DIR/test.caidx
38+
@top_builddir@/casync $PARAMS $DIRS list $SCRATCH_DIR/test.caidx >$SCRATCH_DIR/test.caidx.list
39+
@top_builddir@/casync $PARAMS $DIRS mtree $SCRATCH_DIR/test.caidx >$SCRATCH_DIR/test.caidx.mtree
40+
@top_builddir@/casync $PARAMS $DIRS digest $SCRATCH_DIR/test.caidx >$SCRATCH_DIR/test.caidx.digest
41+
42+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test.catar.list
43+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test.caidx.list
44+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test.catar.mtree
45+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test.caidx.mtree
4646
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test.catar.digest
4747
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test.catar.digest2
4848
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test.caidx.digest
@@ -65,21 +65,21 @@ diff -ur --no-dereference . $SCRATCH_DIR/extract-caidx2
6565

6666
set -e
6767

68-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-catar > $SCRATCH_DIR/test.extract-catar.list
69-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-catar2 > $SCRATCH_DIR/test.extract-catar2.list
70-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-catar3 > $SCRATCH_DIR/test.extract-catar3.list
71-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-caidx > $SCRATCH_DIR/test.extract-caidx.list
72-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-caidx2 > $SCRATCH_DIR/test.extract-caidx2.list
73-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-catar > $SCRATCH_DIR/test.extract-catar.mtree
74-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-catar2 > $SCRATCH_DIR/test.extract-catar2.mtree
75-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-catar3 > $SCRATCH_DIR/test.extract-catar3.mtree
76-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-caidx > $SCRATCH_DIR/test.extract-caidx.mtree
77-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-caidx2 > $SCRATCH_DIR/test.extract-caidx2.mtree
78-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-catar > $SCRATCH_DIR/test.extract-catar.digest
79-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-catar2 > $SCRATCH_DIR/test.extract-catar2.digest
80-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-catar3 > $SCRATCH_DIR/test.extract-catar3.digest
81-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-caidx > $SCRATCH_DIR/test.extract-caidx.digest
82-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-caidx2 > $SCRATCH_DIR/test.extract-caidx2.digest
68+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-catar >$SCRATCH_DIR/test.extract-catar.list
69+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-catar2 >$SCRATCH_DIR/test.extract-catar2.list
70+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-catar3 >$SCRATCH_DIR/test.extract-catar3.list
71+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-caidx >$SCRATCH_DIR/test.extract-caidx.list
72+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/extract-caidx2 >$SCRATCH_DIR/test.extract-caidx2.list
73+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-catar >$SCRATCH_DIR/test.extract-catar.mtree
74+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-catar2 >$SCRATCH_DIR/test.extract-catar2.mtree
75+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-catar3 >$SCRATCH_DIR/test.extract-catar3.mtree
76+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-caidx >$SCRATCH_DIR/test.extract-caidx.mtree
77+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-caidx2 >$SCRATCH_DIR/test.extract-caidx2.mtree
78+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-catar >$SCRATCH_DIR/test.extract-catar.digest
79+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-catar2 >$SCRATCH_DIR/test.extract-catar2.digest
80+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-catar3 >$SCRATCH_DIR/test.extract-catar3.digest
81+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-caidx >$SCRATCH_DIR/test.extract-caidx.digest
82+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-caidx2 >$SCRATCH_DIR/test.extract-caidx2.digest
8383

8484
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test.extract-catar.list
8585
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test.extract-catar2.list
@@ -107,14 +107,14 @@ diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test.extract-caidx2.digest
107107
@top_builddir@/casync $PARAMS extract $SCRATCH_DIR/seek.catar $SCRATCH_DIR/extract-seek-catar casync/test-files
108108
@top_builddir@/casync $PARAMS extract $SCRATCH_DIR/seek.caidx $SCRATCH_DIR/extract-seek-caidx casync/test-files
109109

110-
@top_builddir@/casync $PARAMS mtree casync/test-files > $SCRATCH_DIR/original-seek.mtree
111-
@top_builddir@/casync $PARAMS digest casync/test-files > $SCRATCH_DIR/original-seek.digest
112-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-seek-catar/test-files > $SCRATCH_DIR/extract-seek-catar.mtree
113-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-seek-catar/test-files > $SCRATCH_DIR/extract-seek-catar.digest
114-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-seek-caidx/test-files > $SCRATCH_DIR/extract-seek-caidx.mtree
115-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-seek-caidx/test-files > $SCRATCH_DIR/extract-seek-caidx.digest
116-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/seek.catar casync/test-files > $SCRATCH_DIR/extract-seek-catar-direct.digest
117-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/seek.caidx casync/test-files > $SCRATCH_DIR/extract-seek-caidx-direct.digest
110+
@top_builddir@/casync $PARAMS mtree casync/test-files >$SCRATCH_DIR/original-seek.mtree
111+
@top_builddir@/casync $PARAMS digest casync/test-files >$SCRATCH_DIR/original-seek.digest
112+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-seek-catar/test-files >$SCRATCH_DIR/extract-seek-catar.mtree
113+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-seek-catar/test-files >$SCRATCH_DIR/extract-seek-catar.digest
114+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/extract-seek-caidx/test-files >$SCRATCH_DIR/extract-seek-caidx.mtree
115+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/extract-seek-caidx/test-files >$SCRATCH_DIR/extract-seek-caidx.digest
116+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/seek.catar casync/test-files >$SCRATCH_DIR/extract-seek-catar-direct.digest
117+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/seek.caidx casync/test-files >$SCRATCH_DIR/extract-seek-caidx-direct.digest
118118

119119
diff -q $SCRATCH_DIR/original-seek.digest $SCRATCH_DIR/extract-seek-catar.digest
120120
diff -q $SCRATCH_DIR/original-seek.digest $SCRATCH_DIR/extract-seek-caidx.digest
@@ -129,38 +129,38 @@ diff -q $SCRATCH_DIR/original-seek.mtree $SCRATCH_DIR/extract-seek-caidx.mtree
129129
export CASYNC_SSH_PATH=@top_srcdir@/test/pseudo-ssh
130130
export CASYNC_REMOTE_PATH=@top_builddir@/casync
131131

132-
@top_builddir@/casync $PARAMS list localhost:$SCRATCH_DIR/test.caidx > $SCRATCH_DIR/test-remote.caidx.list
133-
@top_builddir@/casync $PARAMS mtree localhost:$SCRATCH_DIR/test.caidx > $SCRATCH_DIR/test-remote.caidx.mtree
134-
@top_builddir@/casync $PARAMS digest localhost:$SCRATCH_DIR/test.caidx > $SCRATCH_DIR/test-remote.caidx.digest
135-
@top_builddir@/casync $PARAMS list localhost:$SCRATCH_DIR/test.catar > $SCRATCH_DIR/test-remote.catar.list
136-
@top_builddir@/casync $PARAMS mtree localhost:$SCRATCH_DIR/test.catar > $SCRATCH_DIR/test-remote.catar.mtree
137-
@top_builddir@/casync $PARAMS digest localhost:$SCRATCH_DIR/test.catar > $SCRATCH_DIR/test-remote.catar.digest
132+
@top_builddir@/casync $PARAMS list localhost:$SCRATCH_DIR/test.caidx >$SCRATCH_DIR/test-remote.caidx.list
133+
@top_builddir@/casync $PARAMS mtree localhost:$SCRATCH_DIR/test.caidx >$SCRATCH_DIR/test-remote.caidx.mtree
134+
@top_builddir@/casync $PARAMS digest localhost:$SCRATCH_DIR/test.caidx >$SCRATCH_DIR/test-remote.caidx.digest
135+
@top_builddir@/casync $PARAMS list localhost:$SCRATCH_DIR/test.catar >$SCRATCH_DIR/test-remote.catar.list
136+
@top_builddir@/casync $PARAMS mtree localhost:$SCRATCH_DIR/test.catar >$SCRATCH_DIR/test-remote.catar.mtree
137+
@top_builddir@/casync $PARAMS digest localhost:$SCRATCH_DIR/test.catar >$SCRATCH_DIR/test-remote.catar.digest
138138

139-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test-remote.caidx.list
140-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test-remote.caidx.mtree
139+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test-remote.caidx.list
140+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test-remote.caidx.mtree
141141
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test-remote.caidx.digest
142-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test-remote.catar.list
143-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test-remote.catar.mtree
142+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test-remote.catar.list
143+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test-remote.catar.mtree
144144
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test-remote.catar.digest
145145

146146
rm -rf $SCRATCH_DIR/default.castr
147147

148148
@top_builddir@/casync $PARAMS make localhost:$SCRATCH_DIR/test2.caidx
149-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/test2.caidx > $SCRATCH_DIR/test2.caidx.list
150-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/test2.caidx > $SCRATCH_DIR/test2.caidx.mtree
151-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/test2.caidx > $SCRATCH_DIR/test2.caidx.digest
149+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/test2.caidx >$SCRATCH_DIR/test2.caidx.list
150+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/test2.caidx >$SCRATCH_DIR/test2.caidx.mtree
151+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/test2.caidx >$SCRATCH_DIR/test2.caidx.digest
152152

153-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test2.caidx.list
154-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test2.caidx.mtree
153+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test2.caidx.list
154+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test2.caidx.mtree
155155
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test2.caidx.digest
156156

157157
@top_builddir@/casync $PARAMS make localhost:$SCRATCH_DIR/test2.catar
158-
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/test2.catar > $SCRATCH_DIR/test2.catar.list
159-
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/test2.catar > $SCRATCH_DIR/test2.catar.mtree
160-
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/test2.catar > $SCRATCH_DIR/test2.catar.digest
158+
@top_builddir@/casync $PARAMS list $SCRATCH_DIR/test2.catar >$SCRATCH_DIR/test2.catar.list
159+
@top_builddir@/casync $PARAMS mtree $SCRATCH_DIR/test2.catar >$SCRATCH_DIR/test2.catar.mtree
160+
@top_builddir@/casync $PARAMS digest $SCRATCH_DIR/test2.catar >$SCRATCH_DIR/test2.catar.digest
161161

162-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test2.catar.list
163-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test2.catar.mtree
162+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test2.catar.list
163+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test2.catar.mtree
164164
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test2.catar.digest
165165

166166
### Test HTTP Remoting
@@ -171,20 +171,20 @@ export CASYNC_PROTOCOL_PATH=@top_builddir@
171171

172172
HTTP_PID=`@top_builddir@/notify-wait @top_srcdir@/test/http-server.py $SCRATCH_DIR $HTTP_PORT`
173173

174-
@top_builddir@/casync $PARAMS list http://localhost:$HTTP_PORT/test2.caidx > $SCRATCH_DIR/test3.caidx.list
175-
@top_builddir@/casync $PARAMS mtree http://localhost:$HTTP_PORT/test2.caidx > $SCRATCH_DIR/test3.caidx.mtree
176-
@top_builddir@/casync $PARAMS digest http://localhost:$HTTP_PORT/test2.caidx > $SCRATCH_DIR/test3.caidx.digest
174+
@top_builddir@/casync $PARAMS list http://localhost:$HTTP_PORT/test2.caidx >$SCRATCH_DIR/test3.caidx.list
175+
@top_builddir@/casync $PARAMS mtree http://localhost:$HTTP_PORT/test2.caidx >$SCRATCH_DIR/test3.caidx.mtree
176+
@top_builddir@/casync $PARAMS digest http://localhost:$HTTP_PORT/test2.caidx >$SCRATCH_DIR/test3.caidx.digest
177177

178-
@top_builddir@/casync $PARAMS list http://localhost:$HTTP_PORT/test2.catar > $SCRATCH_DIR/test3.catar.list
179-
@top_builddir@/casync $PARAMS mtree http://localhost:$HTTP_PORT/test2.catar > $SCRATCH_DIR/test3.catar.mtree
180-
@top_builddir@/casync $PARAMS digest http://localhost:$HTTP_PORT/test2.catar > $SCRATCH_DIR/test3.catar.digest
178+
@top_builddir@/casync $PARAMS list http://localhost:$HTTP_PORT/test2.catar >$SCRATCH_DIR/test3.catar.list
179+
@top_builddir@/casync $PARAMS mtree http://localhost:$HTTP_PORT/test2.catar >$SCRATCH_DIR/test3.catar.mtree
180+
@top_builddir@/casync $PARAMS digest http://localhost:$HTTP_PORT/test2.catar >$SCRATCH_DIR/test3.catar.digest
181181

182-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test3.caidx.list
183-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test3.caidx.mtree
182+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test3.caidx.list
183+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test3.caidx.mtree
184184
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test3.caidx.digest
185185

186-
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test3.catar.list
187-
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test3.catar.mtree
186+
diff -q $SCRATCH_DIR/test.list $SCRATCH_DIR/test3.catar.list
187+
diff -q $SCRATCH_DIR/test.mtree $SCRATCH_DIR/test3.catar.mtree
188188
diff -q $SCRATCH_DIR/test.digest $SCRATCH_DIR/test3.catar.digest
189189

190190
kill $HTTP_PID

0 commit comments

Comments
 (0)