model qa check for other simulator

This commit is contained in:
dwarning
2015-03-30 16:02:41 +02:00
parent 886bc336bf
commit 5e0726195d
14 changed files with 675 additions and 15 deletions
+21 -3
View File
@@ -30,6 +30,8 @@ help() {
ngspice run tests and compare results ngspice
hspice run tests and compare results hspice
clean remove all previously generated simulation results
NOTE: if test results exist they are not resimulated
@@ -102,22 +104,38 @@ run_test() {
#####
##### ngspice tests
##### tests
#####
ngspice() {
run_test ngspice
}
hspice() {
run_test hspice
}
#####
##### clean
#####
clean() {
rm -rf ${qaResultsDirectory}/ngspice ngspiceCkt*
rm -rf ${qaResultsDirectory}/hspice hspiceCkt*
}
clean_ngspice() {
rm -rf ${qaResultsDirectory}/ngspice ngspiceCkt*
}
clean_hspice() {
rm -rf ${qaResultsDirectory}/hspice hspiceCkt*
}
all() {
ngspice
ngspice hspice
}
@@ -143,7 +161,7 @@ done
for arg in $@ ; do
case "$arg" in
all | clean | ngspice)
all | clean | clean_ngspice | ngspice | clean_hspice | hspice)
"$arg"
;;
*)