diff --git a/.github/buildomat/jobs/test-ds.sh b/.github/buildomat/jobs/test-ds.sh index ff217f781..eee478c73 100755 --- a/.github/buildomat/jobs/test-ds.sh +++ b/.github/buildomat/jobs/test-ds.sh @@ -39,6 +39,7 @@ for t in "$input/bins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 banner test_ds ptime -m bash "$input/scripts/test_ds.sh" diff --git a/.github/buildomat/jobs/test-live-repair.sh b/.github/buildomat/jobs/test-live-repair.sh index 61d702dc6..5dfcf9694 100644 --- a/.github/buildomat/jobs/test-live-repair.sh +++ b/.github/buildomat/jobs/test-live-repair.sh @@ -78,6 +78,7 @@ for t in "$input/bins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 echo "BINDIR is $BINDIR" echo "bindir contains:" diff --git a/.github/buildomat/jobs/test-memory.sh b/.github/buildomat/jobs/test-memory.sh index 6c5659d98..fb83051d5 100755 --- a/.github/buildomat/jobs/test-memory.sh +++ b/.github/buildomat/jobs/test-memory.sh @@ -39,6 +39,7 @@ for t in "$input/rbins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 banner setup pfexec plimit -n 9123456 $$ diff --git a/.github/buildomat/jobs/test-region-create.sh b/.github/buildomat/jobs/test-region-create.sh index c63f134f0..c82feebbc 100755 --- a/.github/buildomat/jobs/test-region-create.sh +++ b/.github/buildomat/jobs/test-region-create.sh @@ -39,6 +39,7 @@ for t in "$input/rbins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 banner region pfexec plimit -n 9123456 $$ diff --git a/.github/buildomat/jobs/test-repair.sh b/.github/buildomat/jobs/test-repair.sh index 48b1e6354..f66cd8721 100644 --- a/.github/buildomat/jobs/test-repair.sh +++ b/.github/buildomat/jobs/test-repair.sh @@ -45,6 +45,7 @@ for t in "$input/bins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 echo "Setup self timeout" # Give this test two hours to finish diff --git a/.github/buildomat/jobs/test-replay.sh b/.github/buildomat/jobs/test-replay.sh index a4bdfe9af..d87f05b93 100644 --- a/.github/buildomat/jobs/test-replay.sh +++ b/.github/buildomat/jobs/test-replay.sh @@ -43,6 +43,7 @@ for t in "$input/bins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 banner setup echo "Setup self timeout" diff --git a/.github/buildomat/jobs/test-up-encrypted.sh b/.github/buildomat/jobs/test-up-encrypted.sh index 8ff024c9e..b8a1b3f96 100644 --- a/.github/buildomat/jobs/test-up-encrypted.sh +++ b/.github/buildomat/jobs/test-up-encrypted.sh @@ -41,6 +41,7 @@ for t in "$input/bins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 # Give this test one hour to finish jobpid=$$; (sleep $(( 60 * 60 )); banner fail-timeout; ps -ef; zfs list;kill $jobpid) & diff --git a/.github/buildomat/jobs/test-up-unencrypted.sh b/.github/buildomat/jobs/test-up-unencrypted.sh index ea4f74049..55ace65f9 100644 --- a/.github/buildomat/jobs/test-up-unencrypted.sh +++ b/.github/buildomat/jobs/test-up-unencrypted.sh @@ -41,6 +41,7 @@ for t in "$input/bins/"*.gz; do done export BINDIR=/var/tmp/bins +export RUST_BACKTRACE=1 # Give this test two hours to finish jobpid=$$; (sleep $(( 120 * 60 )); banner fail-timeout; ps -ef; zfs list;kill $jobpid) &