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

adds @run-coding-tests (that only checks the exit value)

parent faa19492
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
(* *) (* *)
(**************************************************************************) (**************************************************************************)
let file = open_in "logic_parser.mly" let file = open_in "../logic_parser.mly"
module Strings = Set.Make(String) module Strings = Set.Make(String)
......
...@@ -21,3 +21,18 @@ ...@@ -21,3 +21,18 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(include_subdirs no) (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