~nickpapior/siesta/trunk-kovalp

« back to all changes in this revision

Viewing changes to Src/Tests/Makefile

Zmatrix information output and re-starting options (+fixes)
The program now writes a summary of the zmatrix *explicit* variables
at each step of the optimization phase.

New option MD.UseSaveZM added to preserve Zmatrix information accross runs.

New zmatrix test.

Other fixes:

- Remove comment from optim.F implying that it does not work for variable cell
relaxations.

- Fix computation of lattice angles in wxml/flib_wcml.f90.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
# Makefile for SIESTA tests
3
3
#
 
4
# Usage:
 
5
#
 
6
#          make                      --- Run all tests
 
7
#          make tests=fe_broyden     --- Run a single test
 
8
#          make batch                --- Dispatch to batch system
 
9
#                                        (site-dependent)
 
10
#                                        (needs extra configuration)
 
11
#
 
12
#          By default, the version of SIESTA used is the one in Src.
 
13
#          To use another one:
 
14
#
 
15
#          make SIESTA=/some/path/to/siesta-program ....
 
16
#
 
17
#
4
18
# See also test.mk for details
5
19
#
 
20
#
6
21
tests= h2o h2o_dos h2o_orderN floating bessel si mgco3 \
7
22
       var_cell constant_volume batio3 fe fe_broyden sih si64 \
8
 
       h2oZ sih_op_broyden h2o_op_broyden
 
23
       h2oZ sih_op_broyden h2o_op_broyden zmatrix
9
24
#
10
25
all: 
11
26
        @for i in ${tests} ; do \
17
32
                (cd $$i ; make xmlcheck) ; \
18
33
        done
19
34
#
 
35
batch:
 
36
        @for i in ${tests} ; do \
 
37
                (qsub $(HOME)/bin/runit.sh "make tests=$$i") ; \
 
38
        done
20
39
clean:
21
40
        @for i in ${tests} ; do \
22
41
                (cd $$i ; make clean) ; \