2018-03-04 11:15:37 +00:00
|
|
|
// +build !nacl,!js
|
2014-11-06 20:14:08 +00:00
|
|
|
// run
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Run the sinit test.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2015-05-21 17:28:13 +00:00
|
|
|
cmd := exec.Command("go", "tool", "compile", "-S", "sinit.go")
|
2014-11-06 20:14:08 +00:00
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(string(out))
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2015-05-21 17:28:17 +00:00
|
|
|
os.Remove("sinit.o")
|
2014-11-06 20:14:08 +00:00
|
|
|
|
|
|
|
if bytes.Contains(out, []byte("initdone")) {
|
|
|
|
fmt.Println("sinit generated an init function")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|