summary refs log tree commit diff
path: root/bin/cash/tests/parser/for1.0
blob: c2fc8975dcd76ab224380c0b576d8cb36bfa0882 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# $FreeBSD: releng/12.0/bin/sh/tests/parser/for1.0 218889 2011-02-20 14:18:58Z jilles $

nl='
'
list=' a b c'
for s1 in "$nl" " "; do
	for s2 in "$nl" ";" ";$nl"; do
		for s3 in "$nl" " "; do
			r=''
			eval "for i${s1}in ${list}${s2}do${s3}r=\"\$r \$i\"; done"
			[ "$r" = "$list" ] || exit 1
		done
	done
done
set -- $list
for s2 in "$nl" " "; do
	for s3 in "$nl" " "; do
		r=''
		eval "for i${s2}do${s3}r=\"\$r \$i\"; done"
		[ "$r" = "$list" ] || exit 1
	done
done
for s1 in "$nl" " "; do
	for s2 in "$nl" ";" ";$nl"; do
		for s3 in "$nl" " "; do
			eval "for i${s1}in${s2}do${s3}exit 1; done"
		done
	done
done
5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld 2013-04-10t0109: chain operations with &&John Keeping 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer