(executable
 (name run)
 (libraries js_of_ocaml_compiler unix str))

(rule
 (alias runtest-parser)
 (deps
  (glob_files_rec pass/*.js)
  package.json)
 (action
  (run ./run.exe pass)))

(rule
 (alias runtest-parser)
 (deps
  (glob_files_rec test262/test/language/*.js)
  package.json)
 (action
  (run ./run.exe test262/test/language)))
