From 95ece4346fc70673455500c0236686922b23c4d2 Mon Sep 17 00:00:00 2001 From: Nigel Tao Date: Fri, 24 Apr 2015 14:48:56 +1000 Subject: [PATCH] cmd/webp-manual-test: add a "build ignore" tag, so that "go install golang.org/x/image/..." doesn't install the manual testing program. Also add a missing copyright notice. Change-Id: I7ab0a438df09ac8882e7d2482d2bf96d4260f8eb Reviewed-on: https://go-review.googlesource.com/9277 Reviewed-by: Rob Pike --- cmd/webp-manual-test/main.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cmd/webp-manual-test/main.go b/cmd/webp-manual-test/main.go index 8357f94..c041e21 100644 --- a/cmd/webp-manual-test/main.go +++ b/cmd/webp-manual-test/main.go @@ -1,3 +1,12 @@ +// Copyright 2014 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build ignore +// +// This build tag means that "go install golang.org/x/image/..." doesn't +// install this manual test. Use "go run main.go" to explicitly run it. + // Program webp-manual-test checks that the Go WEBP library's decodings match // the C WEBP library's. package main // import "golang.org/x/image/cmd/webp-manual-test"