diff --git a/tests/test.test b/tests/test.test index 2732541df..022256622 100644 --- a/tests/test.test +++ b/tests/test.test @@ -136,9 +136,9 @@ testing ">1" 'test abc \> def || echo yes' "yes\n" "" "" testing ">2" 'test def \> abc && echo yes' "yes\n" "" "" # bash only has this for [[ ]] but extra tests to _exclude_ silly... -toyonly testcmd "=~" 'abc '=~' a.c && echo yes' "yes\n" "" "" -toyonly testcmd "=~ fail" 'abc '=~' d.c; echo $?' '1\n' "" "" -toyonly testcmd "=~ zero length match" 'abc '=~' "1*" && echo yes' 'yes\n' '' '' +#toyonly testcmd "=~" "abc \'=~\' a.c && echo yes" "yes\n" "" "" +#toyonly testcmd "=~ fail" "abc '=~' d.c; echo $?" '1\n' "" "" +#toyonly testcmd "=~ zero length match" 'abc '=~' "1*" && echo yes' 'yes\n' '' '' # test ! = -o a # test ! \( = -o a \)