tests: fix numeric.at for BSD
[tar.git] / tests / numeric.at
blob4ef92c7a26b2bddde342590b47da4f75c314a45f
1 # Process this file with autom4te to create testsuite. -*- Autotest -*-
2 # Test suite for GNU tar.
3 # Copyright 2015-2019 Free Software Foundation, Inc.
5 # GNU tar is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # GNU tar is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 AT_SETUP([--numeric-owner basic tests])
19 AT_KEYWORDS([options numeric numeric-owner])
21 m4_pushdef([TESTOP],[
22 decho $1
23 tar $1 -vvf a dir --numeric-owner |dnl
24  awk '@S|@2=="'"$MYUID/$MYGID"'" {print "OK"; next} {print}'
25 tar $1 -vvf a dir |dnl
26  awk '@S|@2=="'"$MYUSR/$MYGRP"'" {print "OK"; next} {print}'
29 AT_TAR_CHECK([
30 MYUID=$(id -u) || AT_SKIP_TEST
31 MYGID=$(id -g) || AT_SKIP_TEST
32 MYUSR=$(id -un) || AT_SKIP_TEST
33 MYGRP=$(id -gn) || AT_SKIP_TEST
35 mkdir dir
36 # Ensure correct group id on BSDs.
37 chown :$MYGID dir >/dev/null 2>/dev/null
38 genfile --file dir/file
41 TESTOP([--create])
42 TESTOP([--list])
43 TESTOP([--diff])
44 TESTOP([--extract])
46 [0],
47 [--create
52 --list
57 --diff
62 --extract
68 [--create
69 --list
70 --diff
71 --extract
72 ],[],[],[posix,gnu,ustar,oldgnu])
74 AT_CLEANUP
76 m4_popdef([TESTOP])