File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11.PHONY : deps deps-linux deps-macos prepare-test-data compile-programs-asm compile-programs-rust compile-bench \
22compile-programs clean-asm clean-rust clean-bench clean-shared clean test test-asm test-no-compile \
33test-asm-no-compile test-rust test-rust-no-compile test-executor flamegraph-prover \
4- test-fast test-prover test-prover-all test-math-cuda bench-math-cuda build check clippy fmt lint
4+ test-fast test-prover test-prover-all test-disk-spill test- math-cuda bench-math-cuda build check clippy fmt lint
55
66UNAME := $(shell uname)
77
@@ -185,6 +185,12 @@ test-prover-all:
185185test-prover-debug :
186186 cargo test -p lambda-vm-prover --features debug-checks -- --nocapture
187187
188+ # Disk-spill tests (stark + prover). FORCE_DISK_SPILL is required by the prover
189+ # tests; they fail loud without it.
190+ test-disk-spill :
191+ cargo test --release -p stark --features disk-spill disk_spill
192+ FORCE_DISK_SPILL=1 cargo test --release -p lambda-vm-prover --features disk-spill -- disk_spill count_table_lengths
193+
188194# math-cuda parity tests (requires NVIDIA GPU + nvcc)
189195test-math-cuda :
190196 cargo test -p math-cuda --release
You can’t perform that action at this time.
0 commit comments