Permalink
Please sign in to comment.
Browse files
Addressing 0.6.pre4 release issues.
gold/errexit-confusion.sh: A confusing case in bash execution. The arena test is not failing properly. - Minor update to release index - Update OPy regtest checksums.
- Loading branch information...
Showing
with
27 additions
and 11 deletions.
- +0 −3 doc/release-index.md
- +21 −0 gold/errexit-confusion.sh
- +4 −4 opy/_regtest/dis-md5.golden.txt
- +1 −2 scripts/release.sh
- +1 −2 test/arena.sh
| @@ -0,0 +1,21 @@ | ||
| #!/bin/bash | ||
| # | ||
| # Usage: | ||
| # ./if.sh <function name> | ||
| set -o nounset | ||
| set -o pipefail | ||
| set -o errexit | ||
| source test/common.sh | ||
| all-passing() { | ||
| bin/osh --parse-and-print-arena foo | ||
| echo $? | ||
| } | ||
| run-for-release() { | ||
| run-other-suite-for-release example-failure all-passing | ||
| } | ||
| "$@" |
0 comments on commit
146729b