Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 328) sorted by relevance

12345678910>>...14

/busybox-1.35.0/shell/hush_test/hush-quoting/
Dquoted_punct.tests4 case '!' in [\!] ) echo ok;; *) echo 'WRONG!';; esac
5 case '"' in [\"] ) echo ok;; *) echo 'WRONG"';; esac
6 case '#' in [\#] ) echo ok;; *) echo 'WRONG#';; esac
7 case '$' in [\$] ) echo ok;; *) echo 'WRONG$';; esac
8 case '%' in [\%] ) echo ok;; *) echo 'WRONG%';; esac
9 case '&' in [\&] ) echo ok;; *) echo 'WRONG&';; esac
10 case "'" in [\'] ) echo ok;; *) echo "WRONG'";; esac
11 case '(' in [\(] ) echo ok;; *) echo 'WRONG(';; esac
12 case ')' in [\)] ) echo ok;; *) echo 'WRONG)';; esac
13 case '*' in [\*] ) echo ok;; *) echo 'WRONG*';; esac
[all …]
Dbkslash_case1.tests2 # This caught some bugs in the past.
4 case z in
8 case \z in
12 case \z in
16 case z in
20 case \\z in
26 case "\z" in
30 case "\\z" in
34 case "\\\z" in
Dunicode_8x_chars.tests2 case π in
7 case ρ in
12 case ς in
17 case "π" in
21 case "ρ" in
25 case "ς" in
/busybox-1.35.0/shell/ash_test/ash-quoting/
Dquoted_punct.tests4 case '!' in [\!] ) echo ok;; *) echo 'WRONG!';; esac
5 case '"' in [\"] ) echo ok;; *) echo 'WRONG"';; esac
6 case '#' in [\#] ) echo ok;; *) echo 'WRONG#';; esac
7 case '$' in [\$] ) echo ok;; *) echo 'WRONG$';; esac
8 case '%' in [\%] ) echo ok;; *) echo 'WRONG%';; esac
9 case '&' in [\&] ) echo ok;; *) echo 'WRONG&';; esac
10 case "'" in [\'] ) echo ok;; *) echo "WRONG'";; esac
11 case '(' in [\(] ) echo ok;; *) echo 'WRONG(';; esac
12 case ')' in [\)] ) echo ok;; *) echo 'WRONG)';; esac
13 case '*' in [\*] ) echo ok;; *) echo 'WRONG*';; esac
[all …]
Dbkslash_case1.tests2 # This caught some bugs in the past.
4 case z in
8 case \z in
12 case \z in
16 case z in
20 case \\z in
26 case "\z" in
30 case "\\z" in
34 case "\\\z" in
Dunicode_8x_chars.tests2 case π in
7 case ρ in
12 case ς in
17 case "π" in
21 case "ρ" in
25 case "ς" in
/busybox-1.35.0/shell/ash_test/ash-vars/
Dvar_subst_in_for.tests5 echo 'Testing: in x y z'
6 for a in x y z; do echo ".$a."; done
8 echo 'Testing: in u $empty v'
10 for a in u $empty v; do echo ".$a."; done
12 echo 'Testing: in u " $empty" v'
14 for a in u " $empty" v; do echo ".$a."; done
16 echo 'Testing: in u $empty $empty$a v'
18 for a in u $empty $empty$a v; do echo ".$a."; done
20 echo 'Testing: in $a_b'
22 for a in $a_b; do echo ".$a."; done
[all …]
Dvar_subst_in_for.right1 Testing: in x y z
5 Testing: in u $empty v
8 Testing: in u " $empty" v
12 Testing: in u $empty $empty$a v
16 Testing: in $a_b
19 Testing: in $*
23 Testing: in $@
27 Testing: in -$*-
31 Testing: in -$@-
35 Testing: in $a_b -$a_b-
/busybox-1.35.0/shell/hush_test/hush-vars/
Dvar_subst_in_for.tests5 echo 'Testing: in x y z'
6 for a in x y z; do echo ".$a."; done
8 echo 'Testing: in u $empty v'
10 for a in u $empty v; do echo ".$a."; done
12 echo 'Testing: in u " $empty" v'
14 for a in u " $empty" v; do echo ".$a."; done
16 echo 'Testing: in u $empty $empty$a v'
18 for a in u $empty $empty$a v; do echo ".$a."; done
20 echo 'Testing: in $a_b'
22 for a in $a_b; do echo ".$a."; done
[all …]
Dvar_subst_in_for.right1 Testing: in x y z
5 Testing: in u $empty v
8 Testing: in u " $empty" v
12 Testing: in u $empty $empty$a v
16 Testing: in $a_b
19 Testing: in $*
23 Testing: in $@
27 Testing: in -$*-
31 Testing: in -$@-
35 Testing: in $a_b -$a_b-
/busybox-1.35.0/shell/hush_test/hush-parsing/
Dquote3.tests3 echo 'Testing: in ""'
4 for a in ""; do echo ".$a."; done
6 echo 'Testing: in '"''"
7 for a in ''; do echo ".$a."; done
9 echo 'Testing: in $empty'
10 for a in $empty; do echo ".$a."; done
12 echo 'Testing: in $empty""'
13 for a in $empty""; do echo ".$a."; done
15 echo 'Testing: in $empty'"''"
16 for a in $empty''; do echo ".$a."; done
[all …]
Dquote3.right1 Testing: in ""
3 Testing: in ''
5 Testing: in $empty
6 Testing: in $empty""
8 Testing: in $empty''
10 Testing: in "$empty"
Dnegate.tests11 for a in ! a b c; do echo $a; done
12 for a in ! a b c; do ! printf "$a "; echo $?; done
14 for a in ! a b c; do ! "$PRINTF" "$a "; echo $?; done
15 for a in ! a b c; do ! printf "$a " | false; echo $?; done
16 for a in ! a b c; do ! printf "$a " | true; echo $?; done
17 for a in ! a b c; do ! { printf "$a " | false; }; echo $?; done
18 for a in ! a b c; do ! { printf "$a " | true; }; echo $?; done
Dstarquoted.tests5 for a in "$*"; do echo ".$a."; done
6 for a in "$@"; do echo ".$a."; done
7 for a in "-$*-"; do echo ".$a."; done
8 for a in "-$@-"; do echo ".$a."; done
/busybox-1.35.0/shell/ash_test/ash-parsing/
Dquote3.tests3 echo 'Testing: in ""'
4 for a in ""; do echo ".$a."; done
6 echo 'Testing: in '"''"
7 for a in ''; do echo ".$a."; done
9 echo 'Testing: in $empty'
10 for a in $empty; do echo ".$a."; done
12 echo 'Testing: in $empty""'
13 for a in $empty""; do echo ".$a."; done
15 echo 'Testing: in $empty'"''"
16 for a in $empty''; do echo ".$a."; done
[all …]
Dquote3.right1 Testing: in ""
3 Testing: in ''
5 Testing: in $empty
6 Testing: in $empty""
8 Testing: in $empty''
10 Testing: in "$empty"
Dnegate.tests11 for a in ! a b c; do echo $a; done
12 for a in ! a b c; do ! printf "$a "; echo $?; done
14 for a in ! a b c; do ! "$PRINTF" "$a "; echo $?; done
15 for a in ! a b c; do ! printf "$a " | false; echo $?; done
16 for a in ! a b c; do ! printf "$a " | true; echo $?; done
17 for a in ! a b c; do ! { printf "$a " | false; }; echo $?; done
18 for a in ! a b c; do ! { printf "$a " | true; }; echo $?; done
Dstarquoted.tests5 for a in "$*"; do echo ".$a."; done
6 for a in "$@"; do echo ".$a."; done
7 for a in "-$*-"; do echo ".$a."; done
8 for a in "-$@-"; do echo ".$a."; done
/busybox-1.35.0/shell/hush_test/hush-misc/
Dcase1.tests1 case w in a) echo SKIP;; w) echo OK_1;; w) echo WRONG;; esac
3 case w in
12 case $t in a) echo SKIP;; w) echo OK_21;; w) echo WRONG;; esac;
13 case "$t" in a) echo SKIP;; w) echo OK_22;; w) echo WRONG;; esac;
14 case w in a) echo SKIP;; $t) echo OK_23;; "$t") echo WRONG;; esac;
16 case '' in a) echo SKIP;; w) echo WRONG;; *) echo OK_31;; esac;
17 case '' in a) echo SKIP;; '') echo OK_32;; *) echo WRONG;; esac;
19 case `echo w` in a) echo SKIP;; w) echo OK_41;; w) echo WRONG;; esac;
20 case "`echo w`" in a) echo SKIP;; w) echo OK_42;; w) echo WRONG;; esac;
21 case `echo w w` in a) echo SKIP;; w) echo WRONG;; 'w w') echo OK_43;; esac;
[all …]
/busybox-1.35.0/shell/ash_test/ash-misc/
Dcase1.tests1 case w in a) echo SKIP;; w) echo OK_1;; w) echo WRONG;; esac
3 case w in
12 case $t in a) echo SKIP;; w) echo OK_21;; w) echo WRONG;; esac;
13 case "$t" in a) echo SKIP;; w) echo OK_22;; w) echo WRONG;; esac;
14 case w in a) echo SKIP;; $t) echo OK_23;; "$t") echo WRONG;; esac;
16 case '' in a) echo SKIP;; w) echo WRONG;; *) echo OK_31;; esac;
17 case '' in a) echo SKIP;; '') echo OK_32;; *) echo WRONG;; esac;
19 case `echo w` in a) echo SKIP;; w) echo OK_41;; w) echo WRONG;; esac;
20 case "`echo w`" in a) echo SKIP;; w) echo OK_42;; w) echo WRONG;; esac;
21 case `echo w w` in a) echo SKIP;; w) echo WRONG;; 'w w') echo OK_43;; esac;
[all …]
/busybox-1.35.0/shell/ash_test/ash-z_slow/
Dmany_ifs.tests26 for ifs in ': ' ' :'
33 do case $# in
39 case $g in
40 "$s") case $ksh_arith in
44 case $S in
48 *) case $ksh_arith in
55 "$S") case $ksh_arith in
60 *) case $ksh_arith in
64 case $s in
72 case $S in
[all …]
/busybox-1.35.0/shell/hush_test/hush-z_slow/
Dmany_ifs.tests26 for ifs in ': ' ' :'
33 do case $# in
39 case $g in
40 "$s") case $ksh_arith in
44 case $S in
48 *) case $ksh_arith in
55 "$S") case $ksh_arith in
60 *) case $ksh_arith in
64 case $s in
72 case $S in
[all …]
/busybox-1.35.0/util-linux/
Ddmesg.c97 int in = 0; in dmesg_main() local
101 if (last == '\n' && buf[in] == '<') { in dmesg_main()
102 while (buf[in++] != '>' && in < len) in dmesg_main()
105 last = buf[in++]; in dmesg_main()
108 if (in >= len) in dmesg_main()
/busybox-1.35.0/shell/ash_test/ash-glob/
Dglob_bkslash_in_var.right1 Unquoted non-matching glob in var:'test*.TMP/\name_doesnt_exist'
2 Unquoted matching glob in var: 'testdir.TMP/name'
3 Quoted non-matching glob in var: 'test*.TMP/\name_doesnt_exist'
4 Quoted matching glob in var: 'test*.TMP/\name'
/busybox-1.35.0/shell/hush_test/hush-glob/
Dglob_bkslash_in_var.right1 Unquoted non-matching glob in var:'test*.TMP/\name_doesnt_exist'
2 Unquoted matching glob in var: 'testdir.TMP/name'
3 Quoted non-matching glob in var: 'test*.TMP/\name_doesnt_exist'
4 Quoted matching glob in var: 'test*.TMP/\name'

12345678910>>...14