test: keep the step-0 contract sequence linear

scripts/test.sh labels its pre-build contracts as a running 0a..0u sequence.
The new blob-generator contract was slotted in as "0f2" to sit next to the
other build-tooling contract, which breaks the one convention the list has.
Append it as 0v instead; these steps all run before the build, so position
carries no meaning beyond the label.

Signed-off-by: Martin Vogel <martin.vogel.tech@gmail.com>
This commit is contained in:
Martin Vogel
2026-08-20 21:31:24 +02:00
parent 18edfa0023
commit 978ac7d745
+3 -3
View File
@@ -218,9 +218,6 @@ bash "$ROOT/tests/test_windows_bundle_contract.sh"
echo "=== Step 0f: tree-sitter runtime Makefile dependencies ==="
bash "$ROOT/tests/test_makefile_ts_runtime_dependencies.sh"
echo "=== Step 0f2: nomic blob generator contract ==="
bash "$ROOT/tests/test_nomic_blob_generator_contract.sh"
echo "=== Step 0g: security fuzz harness self-test ==="
bash "$ROOT/tests/test_security_fuzz_harness.sh"
@@ -266,6 +263,9 @@ bash "$ROOT/tests/test_runtime_isolation_contract.sh"
echo "=== Step 0u: shell line-ending contract ==="
bash "$ROOT/tests/test_shell_line_endings.sh"
echo "=== Step 0v: nomic blob generator contract ==="
bash "$ROOT/tests/test_nomic_blob_generator_contract.sh"
# Verify compiler supports target arch
verify_compiler "$CC"