Server IP : 15.235.198.142 / Your IP : 216.73.216.225 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/src/linux-headers-6.8.0-60/tools/pci/ |
Upload File : |
#!/bin/sh # SPDX-License-Identifier: GPL-2.0 echo "BAR tests" echo bar=0 while [ $bar -lt 6 ] do pcitest -b $bar bar=`expr $bar + 1` done echo echo "Interrupt tests" echo pcitest -i 0 pcitest -l pcitest -i 1 msi=1 while [ $msi -lt 33 ] do pcitest -m $msi msi=`expr $msi + 1` done echo pcitest -i 2 msix=1 while [ $msix -lt 2049 ] do pcitest -x $msix msix=`expr $msix + 1` done echo echo "Read Tests" echo pcitest -i 1 pcitest -r -s 1 pcitest -r -s 1024 pcitest -r -s 1025 pcitest -r -s 1024000 pcitest -r -s 1024001 echo echo "Write Tests" echo pcitest -w -s 1 pcitest -w -s 1024 pcitest -w -s 1025 pcitest -w -s 1024000 pcitest -w -s 1024001 echo echo "Copy Tests" echo pcitest -c -s 1 pcitest -c -s 1024 pcitest -c -s 1025 pcitest -c -s 1024000 pcitest -c -s 1024001 echo