#!/bin/sh
# DF-0762 trigger: run the churn harness as the unprivileged user.
# Usage: ./run.sh [duration_sec] [ncrud] [nrename] [ntree]
cd "$(dirname "$0")"
DUR=${1:-60}
./h2_churn "$DUR" 4 2 2
echo "RUN_EXIT=$?"
