@@ -22,7 +22,8 @@ MAKE="@MAKE@"
22
22
srcdir=@srcdir@
23
23
check_canrun=0
24
24
subset_only=0
25
- FILENAME=test
25
+ PREFIX_FILENAME=
26
+ FILENAME=
26
27
# Using shifts should remove args from the list.
27
28
for arg in " $@ " ; do
28
29
case $arg in
@@ -55,15 +56,15 @@ for arg in "$@" ; do
55
56
subset_only=1
56
57
;;
57
58
-fname=* )
58
- FILENAME =` echo $arg | sed ' s/-*fname=//' `
59
+ PREFIX_FILENAME =` echo $arg | sed ' s/-*fname=//' `
59
60
;;
60
61
-atend)
61
62
shift
62
63
check_at_once=0
63
64
;;
64
65
-help|-u)
65
66
shift
66
- echo " runtests [-fname=FILENAME ] [-checkonly] [-atend] [-check]"
67
+ echo " runtests [-fname=FILENAME_PREFIX ] [-checkonly] [-atend] [-check]"
67
68
echo " run tests in this directory. If -checkonly set, just run"
68
69
echo " the differences check (do NOT rerun the test programs)."
69
70
echo " If -small is used, the examples are built, run, and deleted."
@@ -84,6 +85,10 @@ for arg in "$@" ; do
84
85
esac
85
86
done
86
87
88
+ if [" $PREFIX_FILENAME " = " " ] ; then
89
+ PREFIX_FILENAME=" romio_test_"
90
+ fi
91
+
87
92
# MakeExe program-name
88
93
MakeExe () {
89
94
if [ -s $STOPFILE ] ; then
@@ -97,12 +102,16 @@ MakeExe() {
97
102
exit 1
98
103
fi
99
104
fi
105
+ FILENAME=" ${PREFIX_FILENAME} $1 "
106
+ \r m -f $FILENAME *
100
107
}
108
+
101
109
# CleanExe program-name
102
110
CleanExe () {
103
111
if [ $makeeach = 1 ] ; then
104
112
rm -f $1 $1 .o
105
113
fi
114
+ \r m -f $FILENAME *
106
115
}
107
116
# Output marker
108
117
OutTime () {
@@ -176,7 +185,6 @@ OutTime
176
185
testfiles=" $testfiles simple.out"
177
186
\r m -f simple.out
178
187
MakeExe simple
179
- \r m -f $FILENAME *
180
188
echo ' **** Testing simple.c ****'
181
189
$mpirun -np 4 ./simple -fname $FILENAME
182
190
# CheckOutput simple
@@ -186,7 +194,6 @@ OutTime
186
194
testfiles=" $testfiles async.out"
187
195
\r m -f async.out
188
196
MakeExe async
189
- \r m -f $FILENAME *
190
197
echo ' **** Testing async.c ****'
191
198
$mpirun -np 4 ./async -fname $FILENAME
192
199
# CheckOutput async
@@ -196,7 +203,6 @@ OutTime
196
203
testfiles=" $testfiles async-multi.out"
197
204
\r m -f async-multi.out
198
205
MakeExe async-multiple
199
- \r m -f $FILENAME *
200
206
echo ' **** Testing async-multiple.c ****'
201
207
$mpirun -np 4 ./async-multiple -fname $FILENAME
202
208
# CheckOutput async-multiple
@@ -207,7 +213,6 @@ if [ $subset_only -eq 0 ] ; then
207
213
testfiles=" $testfiles atomicity.out"
208
214
\r m -f atomicity.out
209
215
MakeExe atomicity
210
- \r m -f $FILENAME *
211
216
echo ' **** Testing atomicity.c ****'
212
217
# Atomicity test recommends at least 8 processes (separate processors
213
218
# even better)
220
225
testfiles=" $testfiles coll_test.out"
221
226
\r m -f coll_test.out
222
227
MakeExe coll_test
223
- \r m -f $FILENAME *
224
228
echo ' **** Testing coll_test.c ****'
225
229
$mpirun -np 4 ./coll_test -fname $FILENAME
226
230
# CheckOutput coll_test
@@ -230,7 +234,6 @@ OutTime
230
234
testfiles=" $testfiles excl.out"
231
235
\r m -f excl.out
232
236
MakeExe excl
233
- \r m -f $FILENAME *
234
237
echo ' **** Testing excl.c ****'
235
238
$mpirun -np 4 ./excl -fname $FILENAME
236
239
# CheckOutput excl
@@ -239,7 +242,6 @@ CleanExe excl
239
242
testfiles=" $testfiles file_info.out"
240
243
\r m -f file_info.out
241
244
MakeExe file_info
242
- \r m -f $FILENAME *
243
245
for fs in @FILE_SYSTEM@ ; do
244
246
OutTime
245
247
echo " **** Testing file_info.c - file system = $fs ****"
@@ -260,7 +262,6 @@ OutTime
260
262
testfiles=" $testfiles i_noncontig.out"
261
263
\r m -f i_noncontig.out
262
264
MakeExe i_noncontig
263
- \r m -f $FILENAME *
264
265
echo ' **** Testing i_noncontig.c ****'
265
266
$mpirun -np 2 ./i_noncontig -fname $FILENAME
266
267
# CheckOutput i_noncontig
@@ -270,7 +271,6 @@ OutTime
270
271
testfiles=" $testfiles noncontig.out"
271
272
\r m -f noncontig.out
272
273
MakeExe noncontig
273
- \r m -f $FILENAME *
274
274
echo ' **** Testing noncontig.c ****'
275
275
$mpirun -np 2 ./noncontig -fname $FILENAME
276
276
# CheckOutput noncontig
@@ -280,7 +280,6 @@ OutTime
280
280
testfiles=" $testfiles noncontig_coll.out"
281
281
\r m -f noncontig_coll.out
282
282
MakeExe noncontig_coll
283
- \r m -f $FILENAME *
284
283
echo ' **** Testing noncontig_coll.c ****'
285
284
$mpirun -np 2 ./noncontig_coll -fname $FILENAME
286
285
# CheckOutput noncontig_coll
@@ -290,7 +289,6 @@ OutTime
290
289
testfiles=" $testfiles noncontig_coll2.out"
291
290
\r m -f noncontig_coll2.out
292
291
MakeExe noncontig_coll2
293
- \r m -f $FILENAME *
294
292
echo ' **** Testing noncontig_coll2.c ****'
295
293
$mpirun -np 4 ./noncontig_coll2 -fname $FILENAME
296
294
# CheckOutput noncontig_coll2
@@ -326,7 +324,6 @@ if [ $subset_only -eq 0 ] ; then
326
324
testfiles=" $testfiles misc.out"
327
325
\r m -f misc.out
328
326
MakeExe misc
329
- \r m -f $FILENAME *
330
327
echo ' **** Testing misc.c ****'
331
328
$mpirun -np 4 ./misc -fname $FILENAME
332
329
# CheckOutput misc
@@ -338,7 +335,6 @@ if [ $subset_only -eq 0 ] ; then
338
335
testfiles=" $testfiles shared_fp.out"
339
336
\r m -f shared_fp.out
340
337
MakeExe shared_fp
341
- \r m -f $FILENAME *
342
338
echo ' **** Testing shared_fp.c ****'
343
339
$mpirun -np 4 ./shared_fp -fname $FILENAME
344
340
# CheckOutput shared_fp
@@ -348,7 +344,6 @@ if [ $subset_only -eq 0 ] ; then
348
344
testfiles=" $testfiles ordered_fp.out"
349
345
\r m -f ordered_fp.out
350
346
MakeExe ordered_fp
351
- \r m -f $FILENAME *
352
347
echo ' **** Testing ordered_fp.c ****'
353
348
$mpirun -np 4 ./ordered_fp -fname $FILENAME
354
349
CleanExe ordered_fp
358
353
testfiles=" $testfiles split_coll.out"
359
354
\r m -f split_coll.out
360
355
MakeExe split_coll
361
- \r m -f $FILENAME *
362
356
echo ' **** Testing split_coll.c ****'
363
357
$mpirun -np 4 ./split_coll -fname $FILENAME
364
358
# CheckOutput split_coll
@@ -369,7 +363,6 @@ if [ @NOPROFILE@ = 0 ] ; then
369
363
testfiles=" $testfiles psimple.out"
370
364
\r m -f psimple.out
371
365
MakeExe psimple
372
- \r m -f $FILENAME *
373
366
echo ' **** Testing psimple.c ****'
374
367
$mpirun -np 4 ./psimple -fname $FILENAME
375
368
# CheckOutput psimple
@@ -380,7 +373,6 @@ OutTime
380
373
testfiles=" $testfiles error.out"
381
374
\r m -f error.out
382
375
MakeExe error
383
- \r m -f $FILENAME *
384
376
echo ' **** Testing error.c ****'
385
377
$mpirun -np 1 ./error -fname $FILENAME
386
378
# CheckOutput error
@@ -390,7 +382,6 @@ OutTime
390
382
testfiles=" $testfiles status.out"
391
383
\r m -f status.out
392
384
MakeExe status
393
- \r m -f $FILENAME *
394
385
echo ' **** Testing status.c ****'
395
386
# Some systems have a status program.
396
387
$mpirun -np 1 ./status -fname $FILENAME
@@ -400,19 +391,16 @@ OutTime
400
391
testfiles=" $testfiles types_with_zeros.out"
401
392
\r m -f types_with_zeros.out
402
393
MakeExe types_with_zeros
403
- \r m -f $FILENAME *
404
394
echo ' **** Testing types_with_zeros ****'
405
395
$mpirun -np 2 ./types_with_zeros $FILENAME
406
396
CleanExe types_with_zeros
407
397
OutTime
408
398
testfiles=" $testfiles darray_read.out"
409
399
\r m -f darray_read.out
410
400
MakeExe darray_read
411
- \r m -f $FILENAME *
412
401
echo ' **** Testing darray_read ****'
413
402
$mpirun -np 4 ./darray_read $FILENAME
414
403
CleanExe darray_read
415
- \r m -f $FILENAME *
416
404
OutTime
417
405
MakeExe syshints
418
406
echo ' **** Testing syshints ****'
@@ -434,7 +422,6 @@ if [ @NOF77@ = 0 ] ; then
434
422
testfiles=" $testfiles fmisc.out"
435
423
\r m -f fmisc.out
436
424
MakeExe fmisc
437
- \r m -f $FILENAME *
438
425
echo ' **** Testing fmisc.f ****'
439
426
$mpirun -np 4 ./fmisc -fname $FILENAME
440
427
# CheckOutput fmisc
@@ -445,7 +432,6 @@ if [ @NOF77@ = 0 ] ; then
445
432
testfiles=" $testfiles fcoll_test.out"
446
433
\r m -f fcoll_test.out
447
434
MakeExe fcoll_test
448
- \r m -f $FILENAME *
449
435
echo ' **** Testing fcoll_test.f ****'
450
436
$mpirun -np 4 ./fcoll_test -fname $FILENAME
451
437
# CheckOutput fcoll_test
@@ -455,12 +441,10 @@ if [ @NOF77@ = 0 ] ; then
455
441
testfiles=" $testfiles pfcoll_test.out"
456
442
\r m -f pfcoll_test.out
457
443
MakeExe pfcoll_test
458
- \r m -f $FILENAME *
459
444
echo ' **** Testing pfcoll_test.f ****'
460
445
$mpirun -np 4 ./pfcoll_test -fname $FILENAME
461
446
# CheckOutput pfcoll_test
462
447
CleanExe pfcoll_test
463
- \r m -f $FILENAME *
464
448
#
465
449
echo " "
466
450
fi
0 commit comments