Commit eac5e31e authored by Florian Kaltenberger's avatar Florian Kaltenberger

adding test script for dlsim

parent 69107145
#!/bin/bash
for m in `seq 0 28`; do
for b in 1 3 7 15 31 63 127 255 511 1023 2047 4095 8191 16383 32767 65535 131071 262143 524287 1048575 2097151 4194303 8388607 16777215 33554431; do
./dlsim -x1 -y1 -z1 -B 100 -r $b -m $m -c 1 -n100 -R1 -a -s30 -w1 -O70 > /dev/null
rc=$?;
if [ $rc == 0 ]; then
echo "MCS $m PRB $b OK";
else
echo "MCS $m PRB $b NOK";
fi
done
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment