Browse Source

ignore objdump exit code

Jorge Aparicio 8 years ago
parent
commit
a16950e580
1 changed files with 2 additions and 0 deletions
  1. 2 0
      ci/script.sh

+ 2 - 0
ci/script.sh

@@ -18,8 +18,10 @@ run_tests() {
 
 
 inspect() {
 inspect() {
     ${PREFIX}nm -g --defined-only target/**/debug/*.rlib
     ${PREFIX}nm -g --defined-only target/**/debug/*.rlib
+    set +e
     ${PREFIX}objdump -Cd target/**/debug/*.rlib
     ${PREFIX}objdump -Cd target/**/debug/*.rlib
     ${PREFIX}objdump -Cd target/**/release/*.rlib
     ${PREFIX}objdump -Cd target/**/release/*.rlib
+    set -e
 }
 }
 
 
 main() {
 main() {