tests: refactor more tests to use mkfifo_or_skip_
[coreutils.git] / tests / misc / sort-unique
blobbc0f8faa0daebb807e5d7e7f42de5fd39b22f3e9
1 #!/bin/sh
2 # Test 'sort -u'.
4 # Copyright (C) 2010-2011 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 . "${srcdir=.}/init.sh"; path_prepend_ ../src
20 print_ver_ sort
22 cat > in <<\EOF
27 EOF
29 cat > exp <<\EOF
33 EOF
35 for LOC in C "$LOCALE_FR" "$LOCALE_FR_UTF8"; do
36 test -z "$LOC" && continue
38 LC_ALL=$LOC sort -u in > out || { fail=1; break; }
39 compare exp out || { fail=1; break; }
40 done
42 Exit $fail