/
githubmirror
/
numactl
Обзор
Документация
Войти
/
githubmirror
/
numactl
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/runltp
21 строка
729 B
Filipe Brandenburger
test: do not set LD_LIBRARY_PATH in test scripts
06 авг 2014, 02:49
06 авг 2014, 02:49
8a4b900
Код
Авторство
О чём код?
#!/bin/sh # run the Linux Test Project with various numactl settings. will run for a few hours. # must run as root # You can download LTP from http://ltp.sourceforge.net # Change LTP below to the source directory of a compiled LTP distribution LTP=/src/ltp LEN=2h LTPOPT="-q -p -t $LEN" export PATH=`pwd`/..:$PATH cd $LTP for i in 1 2 3 ; do numactl --interleave=all ./runltp $LTPOPT -l n.interleave.all.$i numactl --interleave=0,1 ./runltp $LTPOPT -l n.interleave.01.$i numactl --preferred=0 --cpubind=1 ./runltp $LTPOPT -l n.preferred.$i # the VM test that allocates all memory may fail numactl --membind=1 --cpubind=0 ./runltp $LTPOPT -l n.membind1.$i numactl --membind=0,1 ./runltp $LTPOPT -l n.membind01.$i done