mirror of
https://github.com/golang/go
synced 2024-11-08 05:56:12 -07:00
0c3bf27b97
go1.14 drop nacl support, as go1.15 was released, go1.13 is not supported anymore, nacl is absolutely gone. Change-Id: I05efb46891ec875b08da8f2996751a8e9cb57d0c Reviewed-on: https://go-review.googlesource.com/c/go/+/249977 Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
43 lines
969 B
Go
43 lines
969 B
Go
// run
|
|
|
|
// Copyright 2015 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.
|
|
|
|
// Test error message when EOF is encountered in the
|
|
// middle of a BOM.
|
|
//
|
|
// Since the error requires an EOF, we cannot use the
|
|
// errorcheckoutput mechanism.
|
|
|
|
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
)
|
|
|
|
func main() {
|
|
// create source
|
|
f, err := ioutil.TempFile("", "issue13268-")
|
|
if err != nil {
|
|
log.Fatalf("could not create source file: %v", err)
|
|
}
|
|
f.Write([]byte("package p\n\nfunc \xef\xef")) // if this fails, we will die later
|
|
f.Close()
|
|
defer os.Remove(f.Name())
|
|
|
|
// compile and test output
|
|
cmd := exec.Command("go", "tool", "compile", f.Name())
|
|
out, err := cmd.CombinedOutput()
|
|
if err == nil {
|
|
log.Fatalf("expected cmd/compile to fail")
|
|
}
|
|
if strings.HasPrefix(string(out), "illegal UTF-8 sequence") {
|
|
log.Fatalf("error %q not found", out)
|
|
}
|
|
}
|