~ubuntu-branches/ubuntu/lucid/loop-aes-utils/lucid-security

« back to all changes in this revision

Viewing changes to tests/ts-namei-logic

  • Committer: Bazaar Package Importer
  • Author(s): Max Vozeler
  • Date: 2008-08-22 11:57:17 UTC
  • mfrom: (8.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080822115717-v8wfa8pxwlfvyje0
Tags: 2.13.1-4
* patches/losetup_add_option_f.dpatch: 
  - Added to support "find next free loop" in losetup.
    (closes: #495682)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
. ./commands.sh
 
19
. ./functions.sh
 
20
 
 
21
TS_COMPONENT="namei"
 
22
TS_DESC="logic"
 
23
 
 
24
ts_init "$*"
 
25
 
 
26
SANDBOX="$TS_OUTDIR/namei"
 
27
 
 
28
mkdir -p $SANDBOX/namei1/namei2
 
29
touch $SANDBOX/namei1/namei2/a $SANDBOX/namei1/namei2/b
 
30
 
 
31
$TS_CMD_NAMEI $SANDBOX/namei1/namei2/a   >> $TS_OUTPUT 2>&1
 
32
$TS_CMD_NAMEI $SANDBOX/namei1/namei2/b   >> $TS_OUTPUT 2>&1
 
33
$TS_CMD_NAMEI $SANDBOX/namei1/namei2/a/b >> $TS_OUTPUT 2>&1
 
34
 
 
35
ts_finalize
 
36