summaryrefslogtreecommitdiffstats
path: root/scripts/pm_test_single_taskset
blob: 232dc3b6d3adc6824e783133804ae22d858a1511 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
rm -f res-*.bin
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 ./pm_task ./res-$TASK.bin
	TASK=`expr $TASK + 1`
done < uni1_050_0.ts
./release_ts -d 5000