mirror of https://github.com/abinit/abinit.git
117 lines
1.8 KiB
Python
Executable File
117 lines
1.8 KiB
Python
Executable File
"""Global variables associated to the test suite."""
|
|
|
|
#: List of CPP variables that should be defined in config.h in order to enable this suite.
|
|
need_cpp_vars = [
|
|
]
|
|
|
|
#: List of keywords that are automatically added to all the tests of this suite.
|
|
keywords = [
|
|
]
|
|
|
|
subsuites = [
|
|
"elast",
|
|
"eph_legacy",
|
|
"eph_tdep_legacy",
|
|
"eph4mob",
|
|
"eph4isotc",
|
|
"eph4zpr",
|
|
"lw",
|
|
"nlo",
|
|
"optic",
|
|
"polarization",
|
|
"rf1",
|
|
"rf2",
|
|
]
|
|
|
|
#: List of input files
|
|
inp_files = [
|
|
"teph_tdep_legacy_1.abi",
|
|
"teph_tdep_legacy_2.abi",
|
|
"teph_tdep_legacy_3.abi",
|
|
"teph_tdep_legacy_4.abi",
|
|
"teph_tdep_legacy_5.abi",
|
|
#
|
|
"telast_1.abi",
|
|
"telast_2.abi",
|
|
"telast_3.abi",
|
|
"telast_4.abi",
|
|
"telast_5.abi",
|
|
"telast_6.abi",
|
|
#
|
|
"teph_legacy_1.abi",
|
|
"teph_legacy_2.abi",
|
|
"teph_legacy_3.abi",
|
|
"teph_legacy_4.abi",
|
|
"teph_legacy_5.abi",
|
|
"teph_legacy_6.abi",
|
|
#
|
|
"teph4mob_1.abi",
|
|
"teph4mob_2.abi",
|
|
"teph4mob_3.abi",
|
|
"teph4mob_4.abi",
|
|
"teph4mob_5.abi",
|
|
"teph4mob_6.abi",
|
|
"teph4mob_7.abi",
|
|
#
|
|
"teph4isotc_1.abi",
|
|
"teph4isotc_2.abi",
|
|
"teph4isotc_3.abi",
|
|
"teph4isotc_4.abi",
|
|
"teph4isotc_5.abi",
|
|
"teph4isotc_6.abi",
|
|
"teph4isotc_7.abi",
|
|
#
|
|
"teph4zpr_1.abi",
|
|
"teph4zpr_2.abi",
|
|
"teph4zpr_3.abi",
|
|
"teph4zpr_4.abi",
|
|
"teph4zpr_5.abi",
|
|
"teph4zpr_6.abi",
|
|
"teph4zpr_7.abi",
|
|
"teph4zpr_8.abi",
|
|
#
|
|
"tpolarization_1.abi",
|
|
"tpolarization_2.abi",
|
|
"tpolarization_3.abi",
|
|
"tpolarization_4.abi",
|
|
"tpolarization_5.abi",
|
|
"tpolarization_6.abi",
|
|
#
|
|
"tlw_1.abi",
|
|
"tlw_2.abi",
|
|
"tlw_3.abi",
|
|
"tlw_4.abi",
|
|
"tlw_5.abi",
|
|
"tlw_6.abi",
|
|
"tlw_7.abi",
|
|
"tlw_8.abi",
|
|
#
|
|
"tnlo_1.abi",
|
|
"tnlo_2.abi",
|
|
"tnlo_3.abi",
|
|
"tnlo_4.abi",
|
|
"tnlo_5.abi",
|
|
"tnlo_6.abi",
|
|
#
|
|
"toptic_1.abi",
|
|
"toptic_2.abi",
|
|
"toptic_3.abi",
|
|
"toptic_4.abi",
|
|
"toptic_5.abi",
|
|
#
|
|
"trf1_1.abi",
|
|
"trf1_2.abi",
|
|
"trf1_3.abi",
|
|
"trf1_4.abi",
|
|
"trf1_5.abi",
|
|
"trf1_6.abi",
|
|
#
|
|
"trf2_1.abi",
|
|
"trf2_2.abi",
|
|
"trf2_3.abi",
|
|
"trf2_4.abi",
|
|
"trf2_5.abi",
|
|
"trf2_6.abi",
|
|
"trf2_7.abi",
|
|
]
|