Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/bash

echo $1
./lzbench $1 > results-summary.csv
# Use stdbuf to force line-buffered stdout so CSV data is flushed incrementally
# to disk rather than held in a full-buffer until process exit. Without this,
# a timeout-based kill loses all buffered output (especially on ARM64).
stdbuf -oL ./lzbench $1 > results-summary.csv

Loading