aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-test2/strops2.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-test2/strops2.tests')
-rwxr-xr-xshell/hush_test/hush-test2/strops2.tests12
1 files changed, 12 insertions, 0 deletions
diff --git a/shell/hush_test/hush-test2/strops2.tests b/shell/hush_test/hush-test2/strops2.tests
new file mode 100755
index 000000000..ab325bc9f
--- /dev/null
+++ b/shell/hush_test/hush-test2/strops2.tests
@@ -0,0 +1,12 @@
+# malformed regex
+[[ a =~ * ]]; echo 1:ERR2:$?
+
+[[ a/b =~ a.b ]]; echo 2:YES:$?
+[[ a/b =~ /*b ]]; echo 3:YES:$?
+
+v='[]b.-]'
+[[ a/.b] =~ $v ]]; echo 4:YES:$?
+
+v=']b.-'
+[[ a/.b] =~ $v ]]; echo 5:no:$?
+[[ a/.b] =~ [$v] ]]; echo 6:YES:$?