mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
67 lines
1.4 KiB
Bash
Executable File
67 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# usage:
|
|
# create_test_ref.sh <test_executable>
|
|
# Creates the test reference file using all possible input directories of the
|
|
# data directory.
|
|
# Mon Apr 7 12:00:55 CEST 2014
|
|
|
|
TEST_EXE=$1
|
|
REF_FILE=${TEST_EXE}.ref
|
|
|
|
make executables
|
|
|
|
if [[ ! -f ${TEST_EXE} ]]
|
|
then
|
|
echo '------- ls -------'
|
|
ls -F | egrep '\*$'
|
|
echo '------- ls -------'
|
|
echo 'Executable file not found : ' ${TEST_EXE}
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $(basename ${PWD}) != "tests" ]]
|
|
then
|
|
echo "Error: This script should be run in the tests directory."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z ${TEST_EXE} ]]
|
|
then
|
|
echo "usage: " $(basename $0) " <test_executable>"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z ${MAKE} ]]
|
|
then
|
|
MAKE="make -j 32"
|
|
fi
|
|
|
|
echo "Unarchiving EZFIO input directories"
|
|
${MAKE} -C ${QPACKAGE_ROOT}/data/inputs all_ezfio > /dev/null
|
|
|
|
if [[ -f ${TEST_REF} ]]
|
|
then
|
|
mv ${TEST_REF} ${TEST_REF}.save
|
|
fi
|
|
|
|
printf "data = {\n " > ${REF_FILE}
|
|
printf "Running tests...."
|
|
for dir in ${QPACKAGE_ROOT}/data/inputs/*.ezfio
|
|
do
|
|
printf " '%s' : {\n " $(basename ${dir})
|
|
OMP_NUM_THREADS=1 python << EOF
|
|
import subprocess
|
|
lines = subprocess.check_output("./${TEST_EXE} ${dir}", shell=True)
|
|
for line in lines.splitlines():
|
|
buffer = line.split(':')
|
|
print "'%s' : %s,"%(buffer[0].strip(), buffer[1].strip())
|
|
EOF
|
|
# sed "s/ \(.*\) *\(:\) *\([^ ]*\)/'\1' : \3,/g"
|
|
printf " },\n"
|
|
done >> ${REF_FILE}
|
|
printf "}\n" >> ${REF_FILE}
|
|
echo "Done."
|
|
|
|
|