atpg-ls/crun

14 lines
167 B
Bash
Executable File

#!/bin/bash
clear
make -j 16
if [ $? -ne 0 ]; then
echo "compile failed."
else
echo "========================"
time ./atpg $1 2>&1 | tee output.txt
fi