mirror of https://gitlab.com/QEF/q-e.git
29 lines
648 B
Bash
Executable File
29 lines
648 B
Bash
Executable File
#!/bin/bash
|
|
|
|
work=./results
|
|
reference=./reference
|
|
. ../../../environment_variables
|
|
BIN_DIR=../../../bin
|
|
|
|
mkdir $work
|
|
rm -f $work/*
|
|
|
|
ld1_command="$PARA_PREFIX $BIN_DIR/ld1.x $PARA_POSTFIX"
|
|
|
|
echo "ld1_command =" $ld1_command
|
|
|
|
|
|
if test -e difference ; then /bin/rm difference > /dev/null ; fi
|
|
touch difference
|
|
|
|
for atom in s ni rh al ga as o ; do
|
|
$ld1_command < $atom.in > $work/$atom.out
|
|
echo "diff -wib ./results/$atom.out ./reference/$atom.out" >> difference
|
|
diff -wib $work/$atom.out $reference/ >> difference
|
|
done
|
|
|
|
/bin/rm ld1*.wfc ld1*.dlog
|
|
|
|
# mv Garel.tm.UPF $work
|
|
# diff $work/Garel.tm.UPF $reference/Garel.tm.UPF >> difference
|