plars | 122242c | 2001-06-27 20:26:37 +0000 | [diff] [blame] | 1 | #!/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 | |
| 12 | cd `dirname $0` |
| 13 | export LTPROOT=${PWD} |
| 14 | |
| 15 | export TMPDIR=/tmp |
| 16 | |
| 17 | mkdir /tmp/diskiopan-$$ |
| 18 | cd /tmp/diskiopan-$$ |
| 19 | |
plars | 2c8e1fa | 2001-09-06 12:14:19 +0000 | [diff] [blame] | 20 | export PATH="${PATH}:${LTPROOT}/testcases/bin" |
plars | 122242c | 2001-06-27 20:26:37 +0000 | [diff] [blame] | 21 | |
plars | fe5649c | 2001-09-06 19:32:44 +0000 | [diff] [blame] | 22 | ${LTPROOT}/pan/pan -e -l /tmp/diskiopan.log -S -a ltpdiskio -n ltpdiskio -f ${LTPROOT}/runtest/io |
plars | 122242c | 2001-06-27 20:26:37 +0000 | [diff] [blame] | 23 | |
| 24 | if [ $? -eq "0" ]; then |
| 25 | echo pan reported PASS |
| 26 | else |
| 27 | echo pan reported FAIL |
| 28 | fi |
| 29 | |