blob: c2208fca9c97e490f93f2f1136d36fc7e3bc340b [file] [log] [blame]
plars122242c2001-06-27 20:26:37 +00001#!/bin/sh
2# These tests require the corresponding media to be present:
3#
4# stress_floppy: Requires a writeable HD floppy disk
5#
6# stress_cd: Requires ANY data CD with a minimum of 100MB of data.
7#
8# NOTE: The stress_floppy test is easily modifiable for use on any
9# write device, i.e. tape drive, zip drive....etc
10#
11
12cd `dirname $0`
13export LTPROOT=${PWD}
14
15export TMPDIR=/tmp
16
17mkdir /tmp/diskiopan-$$
18cd /tmp/diskiopan-$$
19
plars2c8e1fa2001-09-06 12:14:19 +000020export PATH="${PATH}:${LTPROOT}/testcases/bin"
plars122242c2001-06-27 20:26:37 +000021
22${LTPROOT}/pan/pan -e -l /tmp/diskiopan.log -S -a ltpdiskio -n ltpdiskio -f ${LTPROOT}/ltctests/runtest/io
23
24if [ $? -eq "0" ]; then
25 echo pan reported PASS
26else
27 echo pan reported FAIL
28fi
29