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) (jbuild_version 1)
(executables (executable
((names (test_isolate_main)) ((name main)
(libraries (tezos-base (libraries (tezos-base
tezos-test-helpers tezos-test-helpers
tezos_proto_alpha_isolate_helpers tezos_proto_alpha_isolate_helpers
@ -14,18 +14,18 @@
(alias (alias
((name buildtest) ((name buildtest)
(package tezos-protocol-alpha) (package tezos-protocol-alpha)
(deps (test_isolate_main.exe)))) (deps (main.exe))))
(alias (alias
((name runtest_isolate_main) ((name runtest_proto_alpha)
(package tezos-protocol-alpha) (package tezos-protocol-alpha)
(deps (sandbox.json (glob_files contracts/*.tz))) (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 (alias
((name runtest) ((name runtest)
(package tezos-protocol-alpha) (package tezos-protocol-alpha)
(deps ((alias runtest_isolate_main))))) (deps ((alias runtest_proto_alpha)))))
(alias (alias
((name runtest_indent) ((name runtest_indent)

View File

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