aboutsummaryrefslogtreecommitdiffstats
path: root/csource/csource_test.go
Commit message (Collapse)AuthorAgeFilesLines
* sys, executor: more kvm improvementsDmitry Vyukov2017-01-121-0/+17
| | | | | | | 1. Basic support for arm64 kvm testing. 2. Fix compiler warnings in x86 kvm code. 3. Test all pseudo syz calls in csource. 4. Fix handling of real code in x86.
* csource: compile with -WerrorDmitry Vyukov2017-01-091-1/+1
| | | | | | Check for compiler warnings during compilation. Don't require -std=c99. Fix existing compiler warnings.
* repro: factor out of syz-repro toolDmitry Vyukov2016-11-191-13/+44
| | | | | | | | Factor out repro logic from syz-repro tool, so that it can be used in syz-manager. Also, support sandboxes in code generated by csoure. This is required to reproduce crashes that require e.g. namespace sandbox.
* prog: remove padding checkingDmitry Vyukov2015-12-231-0/+2
| | | | | So far it has found only false positives. Let's leave this to KMSAN.
* fileutil: new packageDmitry Vyukov2015-12-231-1/+2
| | | | Move some file utilities into a separate package.
* csource: new packageDmitry Vyukov2015-12-231-0/+53
Move C source generation into a separate package. Prog is too bloated already.