I installed abinit-7.4.1, using the following set of commands in a linux server.
1. Download, gunzip and untar the latest version.
2. ./configure
3. make
4. make install
Then I run the command
.
I got the following error message,
Code: Select all
make: *** No rule to make target `testin_v1'. Stop.
But,
command output the following message,
Code: Select all
make basic_tests
make[1]: Entering directory `/root/Downloads/abinit-7.4.1'
cd ./tests && make tests_in
make[2]: Entering directory `/root/Downloads/abinit-7.4.1/tests'
make testin_fast testin_v1 testin_v5 testin_bigdft testin_etsf_io testin_libxc testin_wannier90
make[3]: Entering directory `/root/Downloads/abinit-7.4.1/tests'
echo "Running built-in test in_fast"
Running built-in test in_fast
timeout="0" perl ./Scripts/run-basic-tests.pl built-in in_fast /root/Downloads/abinit-7.4.1/tests
Status file, reporting on built-in test fast
==> The run finished cleanly.
Moreover, comparison of the total energy, and other (few) relevant quantities with reference values has been successful.
This does not mean that no problem is present, however.
Please run the complete set of ABINIT tests to gain a better confidence in your installation.
echo "Running built-in test in_v1"
Running built-in test in_v1
timeout="0" perl ./Scripts/run-basic-tests.pl built-in in_v1 /root/Downloads/abinit-7.4.1/tests
Status file, reporting on built-in test v1
==> The run finished cleanly.
Moreover, comparison of the total energy, and other (few) relevant quantities with reference values has been successful.
This does not mean that no problem is present, however.
Please run the complete set of ABINIT tests to gain a better confidence in your installation.
echo "Running built-in test in_v5"
Running built-in test in_v5
timeout="0" perl ./Scripts/run-basic-tests.pl built-in in_v5 /root/Downloads/abinit-7.4.1/tests
Status file, reporting on built-in test v5
==> The run finished cleanly.
Moreover, comparison of the total energy, and other (few) relevant quantities with reference values has been successful.
This does not mean that no problem is present, however.
Please run the complete set of ABINIT tests to gain a better confidence in your installation.
make[3]: Nothing to be done for `testin_bigdft'.
make[3]: Nothing to be done for `testin_etsf_io'.
make[3]: Nothing to be done for `testin_libxc'.
make[3]: Nothing to be done for `testin_wannier90'.
make[3]: Leaving directory `/root/Downloads/abinit-7.4.1/tests'
make[2]: Leaving directory `/root/Downloads/abinit-7.4.1/tests'
make[1]: Leaving directory `/root/Downloads/abinit-7.4.1'
What could be the issue with the testin_v1 ?