diff options
-rwxr-xr-x | scripts/contrib/build-perf-test-wrapper.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/contrib/build-perf-test-wrapper.sh b/scripts/contrib/build-perf-test-wrapper.sh index 7b7e4dddc6..e804ac24cc 100755 --- a/scripts/contrib/build-perf-test-wrapper.sh +++ b/scripts/contrib/build-perf-test-wrapper.sh | |||
@@ -155,6 +155,14 @@ oe-build-perf-test --out-dir "$results_dir" \ | |||
155 | "${oe_build_perf_test_extra_opts[@]}" \ | 155 | "${oe_build_perf_test_extra_opts[@]}" \ |
156 | --lock-file "$base_dir/oe-build-perf.lock" | 156 | --lock-file "$base_dir/oe-build-perf.lock" |
157 | 157 | ||
158 | case $? in | ||
159 | 1) echo "ERROR: oe-build-perf-test script failed!" | ||
160 | exit 1 | ||
161 | ;; | ||
162 | 2) echo "NOTE: some tests failed!" | ||
163 | ;; | ||
164 | esac | ||
165 | |||
158 | # Commit results to git | 166 | # Commit results to git |
159 | if [ -n "$results_repo" ]; then | 167 | if [ -n "$results_repo" ]; then |
160 | echo -e "\nArchiving results in $results_repo" | 168 | echo -e "\nArchiving results in $results_repo" |
@@ -167,14 +175,6 @@ if [ -n "$results_repo" ]; then | |||
167 | "$results_dir" | 175 | "$results_dir" |
168 | fi | 176 | fi |
169 | 177 | ||
170 | case $? in | ||
171 | 1) echo "ERROR: oe-build-perf-test script failed!" | ||
172 | exit 1 | ||
173 | ;; | ||
174 | 2) echo "NOTE: some tests failed!" | ||
175 | ;; | ||
176 | esac | ||
177 | |||
178 | echo -ne "\n\n-----------------\n" | 178 | echo -ne "\n\n-----------------\n" |
179 | echo "Global results file:" | 179 | echo "Global results file:" |
180 | echo -ne "\n" | 180 | echo -ne "\n" |