Files
MINGW-packages/mingw-w64-slepc/slepc.test
Oleg A. Khlybov 99651c941e Added test suite.
2020-12-26 20:59:10 +05:00

20 lines
622 B
Plaintext

source [file join [file dirname [file normalize [info script]]] tclbuildtest.tcl]
package require tclbuildtest
::tclbuildtest::sandbox {
foreach b {{} static} {
foreach p {single double} {
foreach s {{} complex} {
foreach x {{} openmp mpi} {
test [list c $x $p $s $b] {
run [build [require slepc-[xyz]] ex1.c] -n 100
}
test [list fortran $x $p $s $b] {
run [build [require slepc-[xyz]] ex1f.F] -n 100
}
}
}
}
}
}