Reliability and Stability test for our drivers in LSDK

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Reliability and Stability test for our drivers in LSDK

ソリューションへジャンプ
919件の閲覧回数
yutaka_ando
NXP Employee
NXP Employee

Do you have any test scenario / package to test reliability and/or stability of our own device drivers (e.g. DPAA driver) in LSDK?  For Linux kernel, there is a test project called LTP (Linux test project).  I am looking for something like this.

0 件の賞賛
返信
1 解決策
807件の閲覧回数
yipingwang
NXP TechSupport
NXP TechSupport

Hello Yutaka Ando,

we have LTP test, we also have Ethernet interfaces up and down continuously test to verify the stability.

Thanks,

Yiping

元の投稿で解決策を見る

0 件の賞賛
返信
4 返答(返信)
808件の閲覧回数
yipingwang
NXP TechSupport
NXP TechSupport

Hello Yutaka Ando,

we have LTP test, we also have Ethernet interfaces up and down continuously test to verify the stability.

Thanks,

Yiping

0 件の賞賛
返信
807件の閲覧回数
yutaka_ando
NXP Employee
NXP Employee

Hello yipingwang‌,

Thank you for the answer.

Could we share the test program or test script that perform ethernet interface up / down with customers or 3rd party?  If yes, please let me know whom I should ask for.

Best regards,

Ando

0 件の賞賛
返信
807件の閲覧回数
yipingwang
NXP TechSupport
NXP TechSupport

Hello Ando,

The test script is similar as the following.

#!/bin/sh

ifs=$1

for i in `seq 1 100`

do

    echo "=========== start rount $i test ========"

    for eth in $ifs

    do

        echo "================= link up $eth =========="

        ifconfig $eth up

        sleep 3

        echo "================= link down $eth =========="

        ifconfig $eth down

        sleep 1

    done

done

 

sh +x up_down.sh "eth1 eth2"

You could setup netperf environment, then execute the up_down.sh script.

Thanks,

Yiping

 

0 件の賞賛
返信
807件の閲覧回数
yutaka_ando
NXP Employee
NXP Employee

Hello Yiping,

Thank you for sharing the script!

Best regards,

Ando

0 件の賞賛
返信