Skip to content
Snippets Groups Projects
Commit 8043cebb authored by Patrick Baudin's avatar Patrick Baudin
Browse files

Merge branch 'feature/dune-cleaning-makefiles' into feature/bobot/jbuilder

parents 61769c2d 6e8acac5
No related branches found
No related tags found
No related merge requests found
......@@ -100,9 +100,9 @@ wtests-help:
.PHONY: purge-tests
purge-tests:
find $(PURGED_PTEST_DIRS) -name dune -print0 \
| grep --null -e "/oracle.*/dune\|/result.*/dune" \
| xargs --null --no-run-if-empty -n 10 rm
find $(PURGED_PTEST_DIRS) -name dune \
| grep -e "/oracle.*/dune\|/result.*/dune" \
| xargs --no-run-if-empty -n 10 rm
# Force the full cleaning of the testing environment
.PHONY: clean-tests
......
......@@ -20,7 +20,7 @@
(* *)
(**************************************************************************)
let file = open_in "logic_parser.mly"
let file = open_in "../logic_parser.mly"
module Strings = Set.Make(String)
......
......@@ -21,3 +21,18 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(include_subdirs no)
(executable
(name check_logic_parser)
(libraries unix str)
)
(rule
(alias run-coding-tests)
(deps ../logic_parser.mly)
(action (run %{dep:./check_logic_parser.exe})))
(alias
(deps (alias run-coding-tests) )
(name ptests)
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment