Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Test runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
uncle-betty committed Mar 27, 2022
1 parent 8c3c64f commit 69de0a8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/bash

TRIM=../drat-trim
NAMES="
example-4-vars
example-5-vars
example-Schur
R_4_4_18
uuf-100-1
uuf-100-2
uuf-100-3
uuf-100-4
uuf-100-5
uuf-30-1
uuf-50-2
uuf-50-3
"

RUN=./Checker

for NAME in ${NAMES}; do
echo ${NAME}
${RUN} ${TRIM}/examples/${NAME}.cnf ${TRIM}/examples/${NAME}.lrat
done

echo big_add
${RUN} test/big_add.cnf test/big_add.lrat

echo mul_com
${RUN} test/mul_com.cnf test/mul_com.lrat

0 comments on commit 69de0a8

Please sign in to comment.