Proto_alpha/test: module renaming

This commit is contained in:
Grégoire Henry 2018-02-05 21:48:10 +01:00
parent c6bf7d78b6
commit c4c375dfc2
7 changed files with 11 additions and 11 deletions

View File

@ -1,7 +1,7 @@
(jbuild_version 1)
(executables
((names (test_isolate_main))
(executable
((name main)
(libraries (tezos-base
tezos-test-helpers
tezos_proto_alpha_isolate_helpers
@ -14,18 +14,18 @@
(alias
((name buildtest)
(package tezos-protocol-alpha)
(deps (test_isolate_main.exe))))
(deps (main.exe))))
(alias
((name runtest_isolate_main)
((name runtest_proto_alpha)
(package tezos-protocol-alpha)
(deps (sandbox.json (glob_files contracts/*.tz)))
(action (chdir ${ROOT} (run ${exe:test_isolate_main.exe} ${path-no-dep:contracts})))))
(action (chdir ${ROOT} (run ${exe:main.exe} ${path-no-dep:contracts})))))
(alias
((name runtest)
(package tezos-protocol-alpha)
(deps ((alias runtest_isolate_main)))))
(deps ((alias runtest_proto_alpha)))))
(alias
((name runtest_indent)

View File

@ -10,8 +10,8 @@
let () =
let module Test = Test.Make(Error_monad) in
Test.run "proto_alpha."
( Test_isolate_dsl.tests @
Test_isolate_transaction.tests @
Test_isolate_endorsement.tests @
Test_isolate_origination.tests @
Test_isolate_michelson.tests )
( Test_dsl.tests @
Test_transaction.tests @
Test_endorsement.tests @
Test_origination.tests @
Test_michelson.tests )