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) (targets basic.drup)
(deps (deps
(:pb basic.cnf) (:pb basic.cnf)
(:solver ../main/main.exe)) (:solver ../../src/main/main.exe))
(action (action
(run %{solver} %{pb} -t 2 -o %{targets}))) (run %{solver} %{pb} -t 2 -o %{targets})))

View file

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