| From 7915b85d39ba1e777e4e9824df35897f292595e3 Mon Sep 17 00:00:00 2001 |
| From: "Steven Rostedt (VMware)" <rostedt@goodmis.org> |
| Date: Tue, 7 Feb 2017 12:05:25 -0500 |
| Subject: [PATCH] ktest: Fix child exit code processing |
| |
| commit 32677207dcc5e594254b7fb4fb2352b1755b1d5b upstream. |
| |
| The child_exit errno needs to be shifted by 8 bits to compare against the |
| return values for the bisect variables. |
| |
| Fixes: c5dacb88f0a64 ("ktest: Allow overriding bisect test results") |
| Cc: stable@vger.kernel.org |
| Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl |
| index d08e214ec6e7..223d88e25e05 100755 |
| --- a/tools/testing/ktest/ktest.pl |
| +++ b/tools/testing/ktest/ktest.pl |
| @@ -2629,7 +2629,7 @@ sub do_run_test { |
| } |
| |
| waitpid $child_pid, 0; |
| - $child_exit = $?; |
| + $child_exit = $? >> 8; |
| |
| my $end_time = time; |
| $test_time = $end_time - $start_time; |
| -- |
| 2.12.0 |
| |