]> git.ipfire.org Git - thirdparty/util-linux.git/blame - tests/ts/namei/logic
tests: split stdout and stderr
[thirdparty/util-linux.git] / tests / ts / namei / logic
CommitLineData
5db4f8e3
KZ
1#!/bin/bash
2
92f2c23e
KZ
3#
4# Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5#
601d12fb 6# This file is part of util-linux.
92f2c23e
KZ
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#
e130ce53 18TS_TOPDIR="${0%/*}/../.."
5f8b0c0e 19TS_DESC="basic functionality"
5db4f8e3 20
5f8b0c0e 21. $TS_TOPDIR/functions.sh
1d9acab1 22ts_init "$*"
5db4f8e3 23
2f791546
SK
24ts_check_test_command "$TS_CMD_NAMEI"
25
7f1f10ab 26ts_cd "$TS_OUTDIR"
5db4f8e3 27
5f8b0c0e
KZ
28mkdir -p namei1/namei2
29touch namei1/namei2/a namei1/namei2/b
5db4f8e3 30
cbf858aa
KZ
31$TS_CMD_NAMEI namei1/namei2/a >> $TS_OUTPUT 2>> $TS_ERRLOG
32$TS_CMD_NAMEI namei1/namei2/b >> $TS_OUTPUT 2>> $TS_ERRLOG
5db4f8e3
KZ
33
34ts_finalize
35