blob: 003cbb49b4340d6c5128044f8b388b38abf47fe9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
#
# test_find: stress test with lot of suspending tasks
# main purpose: bug hunting
TASK=0
while read inputline;
do
e=`echo $inputline | awk -F' ' '{print $1}'`
p=`echo $inputline | awk -F' ' '{print $2}'`
c=`echo $inputline | awk -F' ' '{print $3}'`
./rt_launch -w $e $p -p $c find /
TASK=`expr $TASK + 1`
done < uni1_050_0.ts-psn-edf
./release_ts -d 5000
|