Add an extra step in order to debug disk usage

Recent executions of this test on llvm-snapshots have been failing on
due to exhaustion of disk space. Print the disk usage at the end of the
execution in order to help debug this issue.
This commit is contained in:
Tulio Magno Quites Machado Filho 2024-11-12 10:26:23 -03:00
commit 336e421c1a

View file

@ -52,6 +52,11 @@ rlJournalStart
rlPhaseEnd
rlPhaseStartCleanup
# Some steps of this test have been failing due to not having enough
# disk space. Print the disk usage at the end in order to help debugging which
# partition is full.
rlRun "df -h -t btrfs -t ext4 -t tmpfs -t xfs" 0 "Debug disk usage in overall"
rlRun "du -h -d1 $TmpDir" 0 "Debug disk usage by this test"
rlRun "popd"
rlRun "rm -rf $TmpDir" 0 "Removing tmp directory"
rlPhaseEnd