File: control

package info (click to toggle)
golang-github-google-gofuzz 0.0~git20150903.0.e4af62d-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 104 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Source: golang-github-google-gofuzz
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tianon Gravi <tianon@debian.org>, Tim Potter <tpot@hpe.com>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go,
               tzdata
Standards-Version: 3.9.8
Homepage: https://github.com/google/gofuzz
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-google-gofuzz.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-google-gofuzz.git
XS-Go-Import-Path: github.com/google/gofuzz

Package: golang-github-google-gofuzz-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: Fuzz testing for Go
 gofuzz is a library for populating go objects with random values.
 .
 This is useful for testing:
 .
  * Do your project's objects really serialize/unserialize correctly in all
    cases?
  * Is there an incorrectly formatted object that will cause your project to
    panic?
 .
 Import with import "github.com/google/gofuzz"
 .
 This package contains the source.