aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/test/vnet_tun
Commit message (Collapse)AuthorAgeFilesLines
* prog: support AUTO args in programsDmitry Vyukov2018-12-101-2/+2
| | | | | | | | | | | | | | | AUTO arguments can be used for: - consts - lens - pointers For const's and len's AUTO is replaced with the natural value, addresses for AUTO pointers are allocated linearly. This greatly simplifies writing test programs by hand as most of the time we want these natural values. Update tests to use AUTO.
* tools/syz-runtest: add tool for program unit testingDmitry Vyukov2018-08-031-0/+2
The tool is run as: $ syz-runtest -config manager.config This runs all programs from sys/*/test/* in different modes on actual VMs and checks results. Fixes #603