AppRunner: Automatically annotate logs

Change-Id: I5e614fc1e841e183ac649758972428ae55162a67
diff --git a/apps/app-runner/Makefile b/apps/app-runner/Makefile
index ef1c483..07cc97f 100644
--- a/apps/app-runner/Makefile
+++ b/apps/app-runner/Makefile
@@ -22,6 +22,14 @@
 build: clean
 	/usr/local/go/bin/go build -o app-runner *.go
 
+test: export CGO_ENABLED=0
+test:
+	/usr/local/go/bin/go test ./...
+
+test: export CGO_ENABLED=0
+testv:
+	/usr/local/go/bin/go test -v ./...
+
 build_arm64: export CGO_ENABLED=0
 build_arm64: export GO111MODULE=on
 build_arm64: export GOOS=linux