fix compilation in unittest

This commit is contained in:
Simon Cruanes 2022-08-13 13:29:35 -04:00
parent 85314379a5
commit 7d46a38e2c
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@
(targets basic.drup)
(deps
(:pb basic.cnf)
(:solver ../main/main.exe))
(:solver ../../src/main/main.exe))
(action
(run %{solver} %{pb} -t 2 -o %{targets})))

View file

@ -2,11 +2,11 @@
(targets reg_model_lra1.out)
(deps
(:file reg_model_lra1.smt2)
../../main/main.exe)
(:main ../../../src/main/main.exe))
(action
(with-stdout-to
%{targets}
(bash "../../main/main.exe %{file} | tail -n +2"))))
(bash "%{main} %{file} | tail -n +2"))))
(rule
(alias runtest)