Commit db881079 authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

[t:4814] fix recovery_fileops_unit.tdb runner


git-svn-id: file:///svn/toku/tokudb@43405 c7de825b-a66e-492c-adef-691d508d4ae1
parent f73b5f87
......@@ -48,12 +48,7 @@ do
do
for h in $hset
do
test $O != c || true
test $c -eq 0 || true
test $b -eq 0 || true
test $e -eq 0 || true
test $d -eq 1 || true
if true #[[ ( $O != c ) -a ( $c -eq 0 ) -a ( ( $b -eq 0 ) -o ( $e -eq 0 ) -o ( $d -eq 1 ) ) ]]
if [[ "$O" != "c" && $c -eq 0 && ( $b -eq 0 || $e -eq 0 || $d -eq 1 ) ]]
then
iset="0 1"
else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment