d8eba599f5
to wcscoll(3). Newline characters could cause incorrect results when comparing lines. Also, if an input line didn't contain a newline character, it was omitted from the output. According to my interpretation, SUSv3 requires that the newline is always printed. Add regression tests for the cases. [1] PR: bin/140976 Submitted by: D'Arcy Cain (original version) [1] Approved by: trasz (mentor)
14 lines
277 B
Bash
14 lines
277 B
Bash
# $FreeBSD$
|
|
|
|
LC_ALL=C; export LC_ALL
|
|
|
|
echo 1..3
|
|
|
|
REGRESSION_START($1)
|
|
|
|
REGRESSION_TEST(`00', `comm -12 regress.00a.in regress.00b.in')
|
|
REGRESSION_TEST(`01', `comm -12 regress.01a.in regress.01b.in')
|
|
REGRESSION_TEST(`02', `comm regress.02a.in regress.02b.in')
|
|
|
|
REGRESSION_END()
|