forked from milc-qcd/milc_qcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Make_test_all
64 lines (55 loc) · 1.21 KB
/
Make_test_all
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Make file for exercising Make_test in all of the applications
# in the working version of the code.
# You probably don't need to be so thorough.
# You can also just run Make_test for one application
# See the instructions in Make_test_template for testing your
# favorite application.
# C.D. 3/17/00
# Note: dense_static_su3 is omitted for want of sample test files
# C.D. 12/06/97
# Note: Neither arb_dirac_eigen nor arb_dirac_invert are debugged
# as parallel code.
#DIRS = \
# arb_dirac_eigen \
# arb_dirac_invert \
# h_dibaryon \
# heavy \
# pw_nr_meson \
# schroed_pg \
# wilson_static \
DIRS = \
arb_overlap \
clover_dynamical \
clover_invert2 \
ext_src \
file_utilities \
gauge_utilities \
gluon_prop \
hvy_qpot \
ks_eigen \
ks_imp_dyn \
ks_imp_rhmc \
ks_imp_utilities \
ks_measure \
ks_spectrum \
pure_gauge \
schroed_cl_inv \
schroed_ks_dyn \
smooth_inst \
symanzik_sl32 \
u1_gauge \
wilson_flow \
all:
for dir in ${DIRS};\
do\
echo "Testing $$dir"; \
cp Makefile $$dir; \
cd $$dir; \
${MAKE} -k check > maketest.log 2>&1;\
cd ..;\
done
clean:
for dir in ${DIRS};\
do\
(cd $$dir; ${MAKE} test_clean;)\
done