diff options
| author | Joe Richey <joerichey@google.com> | 2017-03-01 16:57:27 -0800 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-05-02 13:39:18 -0700 |
| commit | 4680eaaef15171948332ad7d13def794635c095d (patch) | |
| tree | 0a98db9734b4fcab463152a53b83a9e75f109916 /Makefile | |
| parent | f49cd711a063136e6978b6a4bb2686d96c725bc8 (diff) | |
util: convenience utilities for fscrypt
This commit adds in the util package. This package provides
two functions for creating errors. These functions are:
- InvalidInputErrorF - bad input from user or caller
- SystemErrorF - low level failure
It also adds in a small function for converting Go byte slices into C
void pointers. This will be very useful for interoperating with C.
Change-Id: I87ad7946dd5fa26e28927590aff4bcc9fd5ce4f7
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ $(NAME): # Makes sure go files build and tests pass go: - go build $(GOFLAGS) -o /dev/null ./... + go build $(GOFLAGS) ./... go test $(GOFLAGS) ./... lint: |