File: run_integration_tests.sh

package info (click to toggle)
python-ezsnmp 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,256 kB
  • sloc: cpp: 3,746; python: 1,987; javascript: 1,110; makefile: 17; sh: 12
file content (16 lines) | stat: -rwxr-xr-x 365 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

for i in 2 4 8 16 32; do
    python3 test_snmp_get.py "$i" process
    python3 test_snmp_get.py "$i" thread
done

for i in 2 4 8 16 32; do
    python3 test_snmp_walk.py "$i" process
    python3 test_snmp_walk.py "$i" thread
done

for i in 2 4 8 16 32; do
    python3 test_snmp_bulkwalk.py "$i" process
    python3 test_snmp_bulkwalk.py "$i" thread
done