Skip to content

Commit b6c9dbf

Browse files
committed
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: 0092eae ("torture: Add kvm-remote.sh script for distributed rcutorture test runs") Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
1 parent a959ed6 commit b6c9dbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/testing/selftests/rcutorture/bin/kvm-remote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ do
144144
if test "$ret" -ne 0
145145
then
146146
echo System $i unreachable, giving up. | tee -a "$oldrun/remote-log"
147-
exit 4 | tee -a "$oldrun/remote-log"
147+
exit 4
148148
fi
149149
done
150150

0 commit comments

Comments
 (0)