This is an automated email from the ASF dual-hosted git repository.
zyxxoo pushed a commit to branch refactor/rust-rewrite-design
in repository https://gitbox.apache.org/repos/asf/hugegraph.git
The following commit(s) were added to refs/heads/refactor/rust-rewrite-design
by this push:
new a9bd709f8 test(poc): add reproducible partition verification command
a9bd709f8 is described below
commit a9bd709f87150571f5bacd868bf0da51aedf4b10
Author: vaughn <[email protected]>
AuthorDate: Thu Sep 10 02:17:12 2026 +0800
test(poc): add reproducible partition verification command
---
tools/rust-partition-poc/verify.sh | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/tools/rust-partition-poc/verify.sh
b/tools/rust-partition-poc/verify.sh
new file mode 100755
index 000000000..d0d9a4f83
--- /dev/null
+++ b/tools/rust-partition-poc/verify.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements.
+# See the NOTICE file distributed with this work for additional information.
+# The ASF licenses this file under the Apache License, Version 2.0.
+# http://www.apache.org/licenses/LICENSE-2.0
+set -euo pipefail
+root="$(cd "$(dirname "$0")/../.." && pwd)"
+manifest="$root/tools/rust-partition-poc/Cargo.toml"
+cargo fmt --manifest-path "$manifest" -- --check
+cargo clippy --manifest-path "$manifest" --all-targets -- -D warnings
+cargo test --manifest-path "$manifest"