diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-01-23 21:52:15 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-01-23 21:52:15 +0000 |
commit | 000a4b3bc2858124301eb36553b018266cfe2cae (patch) | |
tree | 791ae964c0dd4aba79cc9a3a6537db49c594cedf /script/spec-all-pairs | |
parent | 4bf7f6a1e792748b354ca94e1c8599f198dd8eee (diff) |
Suppress stderr too, while running tests
Diffstat (limited to 'script/spec-all-pairs')
-rwxr-xr-x | script/spec-all-pairs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/spec-all-pairs b/script/spec-all-pairs index aab782c8d..0d83f5837 100755 --- a/script/spec-all-pairs +++ b/script/spec-all-pairs @@ -12,7 +12,7 @@ do do rake db:test:purge > /dev/null rake db:test:clone_structure > /dev/null - if ! ( script/spec "$spec1" "$spec2" ) > /dev/null + if ! ( script/spec "$spec1" "$spec2" ) > /dev/null 2>&1 then echo "FAILED: $spec1 $spec2" fi |