diff options
author | Timo Dritschler <timo.dritschler@kit.edu> | 2019-11-28 11:17:37 +0100 |
---|---|---|
committer | Timo Dritschler <timo.dritschler@kit.edu> | 2019-11-28 11:17:37 +0100 |
commit | ca020f15da6fbd11bef2f00c3d5736c7b772ecca (patch) | |
tree | de426c1fc8e45d367cd4bc72f2a1c1b014e14767 /tests/ipedma | |
parent | 8cb6d1301a4d6759dd605e835e3f553149cfb31d (diff) | |
download | pcitool-ca020f15da6fbd11bef2f00c3d5736c7b772ecca.tar.gz pcitool-ca020f15da6fbd11bef2f00c3d5736c7b772ecca.tar.bz2 pcitool-ca020f15da6fbd11bef2f00c3d5736c7b772ecca.tar.xz pcitool-ca020f15da6fbd11bef2f00c3d5736c7b772ecca.zip |
Converted from bzr repo to git repo
Diffstat (limited to 'tests/ipedma')
-rwxr-xr-x | tests/ipedma/bench.sh | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/ipedma/bench.sh b/tests/ipedma/bench.sh deleted file mode 100755 index aa7ec25..0000000 --- a/tests/ipedma/bench.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -size=65536 - -function pci { - PCILIB_PATH=`pwd`/../../.. - LD_LIBRARY_PATH="$PCILIB_PATH" $PCILIB_PATH/pci -m kapture $* -} - - -rm -f bench.out - -echo "Stopping DMA and skipping exiting data..." -pci --stop-dma dma0r -echo "Starting DMA..." -pci --start-dma dma0r -echo "Enabling data generation..." -pci -w 0x4 0x1 - -# Clean DMA buffers -#while [ $? -eq 0 ]; do -# pci -r dma0 -s 65536 &> /dev/null -#done - -echo "Reading the data from DMA..." -for i in `seq 1 100`; do - pci -r dma0 --multipacket -s $size -o bench.out - if [ $? -ne 0 ]; then - echo "Stopping DMA due to the error..." - pci --stop-dma dma0r - exit - fi -done - -echo "Stopping DMA..." -pci --stop-dma dma0r - -../../../apps/check_counter bench.out - -#pci -r 0 -s 32 |