diff options
author | Paul E. McKenney | 2019-06-24 18:12:39 +0200 |
---|---|---|
committer | Paul E. McKenney | 2019-06-24 18:12:39 +0200 |
commit | b989ff070574ad8b8621d866de0a8e9a65d42c80 (patch) | |
tree | f93489ff6715891e4d13bc3e09521000894d18e6 /tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh | |
parent | tools/memory-model: Improve data-race detection (diff) | |
parent | Merge branches 'consolidate.2019.05.28a', 'doc.2019.05.28a', 'fixes.2019.06.1... (diff) | |
download | kernel-qcow2-linux-b989ff070574ad8b8621d866de0a8e9a65d42c80.tar.gz kernel-qcow2-linux-b989ff070574ad8b8621d866de0a8e9a65d42c80.tar.xz kernel-qcow2-linux-b989ff070574ad8b8621d866de0a8e9a65d42c80.zip |
Merge LKMM and RCU commits
Diffstat (limited to 'tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh')
-rwxr-xr-x | tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh b/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh index 8426fe1f15ee..1871d00bccd7 100755 --- a/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh +++ b/tools/testing/selftests/rcutorture/bin/kvm-find-errors.sh @@ -11,6 +11,7 @@ # # The "directory" above should end with the date/time directory, for example, # "tools/testing/selftests/rcutorture/res/2018.02.25-14:27:27". +# Returns error status reflecting the success (or not) of the specified run. # # Copyright (C) IBM Corporation, 2018 # @@ -56,6 +57,8 @@ done if test -n "$files" then $editor $files + exit 1 else echo No errors in console logs. + exit 0 fi |