Skip to content

Commit

Permalink
extend unit test statistic to charge writeset
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Mar 8, 2024
1 parent 67a041e commit 4b8b1fd
Show file tree
Hide file tree
Showing 9 changed files with 468 additions and 50 deletions.
58 changes: 29 additions & 29 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,35 +104,35 @@ bigdecimal = "0.4"
# Note: the BEGIN and END comments below are required for external tooling. Do not remove.
# BEGIN MOVE DEPENDENCIES

# move-abigen = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# move-bytecode-utils = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# move-errmapgen = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# move-ir-compiler = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# move-prover-test-utils = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# move-stackless-bytecode-interpreter = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# move-transactional-test-runner = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# read-write-set = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# read-write-set-dynamic = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-binary-format = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-bytecode-verifier = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-cli = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-command-line-common = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-compiler = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-core-types = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-docgen = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-model = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-package = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-prover = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-prover-boogie-backend = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-prover-bytecode-pipeline = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-resource-viewer = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-stackless-bytecode = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-stdlib = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-symbol-pool = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-unit-test = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-vm-runtime = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-vm-test-utils = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
move-vm-types = { git = "https://github.com/initia-labs/move.git", rev = "e589831fb47c909baebc907753a2f1e8423cdd70" }
# move-abigen = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# move-bytecode-utils = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# move-errmapgen = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# move-ir-compiler = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# move-prover-test-utils = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# move-stackless-bytecode-interpreter = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# move-transactional-test-runner = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# read-write-set = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
# read-write-set-dynamic = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-binary-format = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-bytecode-verifier = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-cli = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-command-line-common = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-compiler = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-core-types = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-docgen = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-model = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-package = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-prover = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-prover-boogie-backend = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-prover-bytecode-pipeline = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-resource-viewer = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-stackless-bytecode = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-stdlib = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-symbol-pool = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-unit-test = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-vm-runtime = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-vm-test-utils = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }
move-vm-types = { git = "https://github.com/initia-labs/move.git", rev = "c05eb67b754fbd97ed1b18c964bd34c1ab34de78" }

# END MOVE DEPENDENCIES

Expand Down
4 changes: 3 additions & 1 deletion crates/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,17 @@ move-core-types = { workspace = true }
move-package = { workspace = true }
move-unit-test = { workspace = true }
move-vm-runtime = { workspace = true, features = ["testing"] }
move-vm-types = { workspace = true }
move-vm-test-utils = { workspace = true }
move-binary-format = { workspace = true }
move-model = { workspace = true }
move-compiler = { workspace = true }
move-docgen = { workspace = true }
move-prover = { workspace = true }
move-prover-boogie-backend = { workspace = true }
move-prover-bytecode-pipeline = {workspace = true }
move-prover-bytecode-pipeline = { workspace = true }
move-stackless-bytecode = { workspace = true }
move-resource-viewer = { workspace = true }

[dev-dependencies]
serial_test = { workspace = true }
Loading

0 comments on commit 4b8b1fd

Please sign in to comment.