Klement Sekera | 75e7d13 | 2017-09-20 08:26:30 +0200 | [diff] [blame] | 1 | # test framework system requirements |
| 2 | # format of this file is |
| 3 | # <path> <operator> <comparison-value> <set-value> |
| 4 | # |
| 5 | # path - path to value e.g. in /proc which needs to be checked |
| 6 | # operator - test operator (e.g. -gt) |
| 7 | # comparison-value - value, against which the value read from <path> is compared |
| 8 | # set-value - value, to which the path is set if the test fails |
| 9 | # |
| 10 | # the comparison is done using `test' command |
| 11 | |
| 12 | |
| 13 | # test_reassembly.py |
| 14 | # needed by test_reassembly which uses udp punt via unix domain sockets |
| 15 | # to ensure that all data which vpp might produce in a burst fits into |
| 16 | # the socket send buffer |
| 17 | /proc/sys/net/core/wmem_max -ge 4636252 4636252 |
| 18 | /proc/sys/net/core/wmem_default -ge 4636252 4636252 |