Skip to content

Commit

Permalink
Remove a test case for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuichiueda committed Dec 25, 2024
1 parent cd96ddd commit 14fef87
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/test_redirects.bash
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,10 @@ res=$($com <<< 'cat <<< $(seq 3)')
2
3" ] || err $LINENO

res=$($com <<< 'cat <<< $(seq 3000) | wc -l')
[ "$res" == "3000" ] || err $LINENO
if [ "$(uname)" = "Linux" ] ; then
res=$($com <<< 'cat <<< $(seq 3000) | wc -l')
[ "$res" == "3000" ] || err $LINENO
fi

res=$($com <<< 'cat <<< $(aaa) | wc -l')
[ "$res" == "1" ] || err $LINENO
Expand Down

0 comments on commit 14fef87

Please sign in to comment.