aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-18 23:46:45 -0300
committerEuAndreh <eu@euandre.org>2022-10-18 23:46:45 -0300
commit6319cbd4dcec63e9a07ce88e169820fc653613e9 (patch)
treec86087d7fde33f93b2a1ccabbe673d971ff2a898
parentshare/man/man1/ootb.1: Add WIP manpage (diff)
downloaddotfiles-6319cbd4dcec63e9a07ce88e169820fc653613e9.tar.gz
dotfiles-6319cbd4dcec63e9a07ce88e169820fc653613e9.tar.xz
opt/tests/x-tests.sh: Add WIP markers for more tests to be added
-rwxr-xr-xopt/tests/x-tests.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/opt/tests/x-tests.sh b/opt/tests/x-tests.sh
index fe46354..4cb6faf 100755
--- a/opt/tests/x-tests.sh
+++ b/opt/tests/x-tests.sh
@@ -1,5 +1,12 @@
#!/bin/sh
set -eu
-x echo
-x echo '&&' echo
+perl ~/.usr/bin/x2 echo
+perl ~/.usr/bin/x2 echo '&&' echo
+
+# Quoting stuff works
+perl bin/x2 echo "'abc\'"
+
+# "OR" has a stronger precedence
+perl bin/x2 echo a '||' this-executable-does-not-exist
+# FIXME