Upload Tizen:Base source
[framework/base/util-linux-ng.git] / tests / ts / namei / logic
1 #!/bin/bash
2
3 #
4 # Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5 #
6 # This file is part of util-linux-ng.
7 #
8 # This file is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This file is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 TS_TOPDIR="$(dirname $0)/../.."
19 TS_DESC="basic functionality"
20
21 . $TS_TOPDIR/functions.sh
22 ts_init "$*"
23
24 cd $TS_OUTDIR
25
26 mkdir -p namei1/namei2
27 touch namei1/namei2/a namei1/namei2/b
28
29 $TS_CMD_NAMEI namei1/namei2/a   >> $TS_OUTPUT 2>&1
30 $TS_CMD_NAMEI namei1/namei2/b   >> $TS_OUTPUT 2>&1
31 $TS_CMD_NAMEI namei1/namei2/a/b >> $TS_OUTPUT 2>&1
32
33 ts_finalize
34