Blame tests/smoke/t_conditionals

7f89380
true && echo -n 'operator,'
7f89380
if true; then echo -n 'if,'; fi
7f89380
if ! true; then echo -n 'if,'; else echo -n 'else,'; fi
7f89380
if [ 'notnul' ]; then echo -n 'test'; fi
7f89380
7f89380