mirror of
https://git.code.sf.net/p/ngspice/ngspice
synced 2026-08-22 13:57:32 +02:00
9 lines
158 B
Bash
Executable File
9 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
|
|
simulator="$1"
|
|
if [ -z "$1" ] ; then
|
|
simulator="ngspice"
|
|
fi
|
|
|
|
../../bin/run_cmc_check clean_${simulator} $simulator | tee cmcqa_${simulator}.log
|