Commit b6c9dbf0 authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

torture: Fix incorrectly redirected "exit" in kvm-remote.sh



The "exit 4" in kvm-remote.sh is pointlessly redirected, so this commit
removes the redirection.

Fixes: 0092eae4 ("torture: Add kvm-remote.sh script for distributed rcutorture test runs")
Signed-off-by: default avatarPaul E. McKenney <paulmck@kernel.org>
parent a959ed62
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ do
	if test "$ret" -ne 0
	then
		echo System $i unreachable, giving up. | tee -a "$oldrun/remote-log"
		exit 4 | tee -a "$oldrun/remote-log"
		exit 4
	fi
done