diff options
author | Alex Gorrod <alexg@wiredtiger.com> | 2016-04-04 11:55:12 +1000 |
---|---|---|
committer | Alex Gorrod <alexg@wiredtiger.com> | 2016-04-04 11:55:12 +1000 |
commit | a7c59bddf2de5e58ad6f53a07fe6cec14a448d41 (patch) | |
tree | 10acef3f48e66f41f5a2a324aa6a26e3cd4e5dff /test/readonly | |
parent | db105a8b177ffc027624629eeae05007c8ae2967 (diff) | |
download | mongo-a7c59bddf2de5e58ad6f53a07fe6cec14a448d41.tar.gz |
WT-2529 Fixup readonly test to not mask exit error codes.
The file system permissions cleanup was masking real failures.
Diffstat (limited to 'test/readonly')
-rwxr-xr-x | test/readonly/smoke.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/readonly/smoke.sh b/test/readonly/smoke.sh index 740deb5743a..8dba513e7af 100755 --- a/test/readonly/smoke.sh +++ b/test/readonly/smoke.sh @@ -1,6 +1,6 @@ #!/bin/sh -trap 'chmod -R u+w WT_*; exit 0' 0 1 2 3 13 15 +trap 'chmod -R u+w WT_*' 0 1 2 3 13 15 set -e |