David du Colombier | fbdf59a | 2014-12-23 09:05:28 +0100 | [diff] [blame] | 1 | // +build !nacl,!plan9,!windows |
Josh Bleecher Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 2 | // run |
Russ Cox | cd22afa | 2012-09-23 13:16:14 -0400 | [diff] [blame] | 3 | |
Russ Cox | 19126320 | 2010-01-25 18:23:20 -0800 | [diff] [blame] | 4 | // Copyright 2009 The Go Authors. All rights reserved. |
| 5 | // Use of this source code is governed by a BSD-style |
| 6 | // license that can be found in the LICENSE file. |
| 7 | |
Josh Bleecher Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 8 | package main |
| 9 | |
| 10 | import ( |
| 11 | "fmt" |
Josh Bleecher Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 12 | "os" |
| 13 | "os/exec" |
| 14 | "path/filepath" |
| 15 | ) |
| 16 | |
| 17 | func main() { |
Josh Bleecher Snyder | 209dd4c | 2014-12-22 15:26:21 -0800 | [diff] [blame] | 18 | // TODO: If we get rid of errchk, re-enable this test on Windows. |
Josh Bleecher Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 19 | errchk, err := filepath.Abs("errchk") |
| 20 | check(err) |
| 21 | |
| 22 | err = os.Chdir(filepath.Join("fixedbugs", "bug248.dir")) |
| 23 | check(err) |
| 24 | |
Russ Cox | 0f4132c | 2015-05-21 13:28:13 -0400 | [diff] [blame] | 25 | run("go", "tool", "compile", "bug0.go") |
| 26 | run("go", "tool", "compile", "bug1.go") |
| 27 | run("go", "tool", "compile", "bug2.go") |
| 28 | run(errchk, "go", "tool", "compile", "-e", "bug3.go") |
Russ Cox | cf932cd | 2015-05-21 13:28:17 -0400 | [diff] [blame] | 29 | run("go", "tool", "link", "bug2.o") |
| 30 | run(fmt.Sprintf(".%ca.out", filepath.Separator)) |
Josh Bleecher Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 31 | |
Russ Cox | cf932cd | 2015-05-21 13:28:17 -0400 | [diff] [blame] | 32 | os.Remove("bug0.o") |
| 33 | os.Remove("bug1.o") |
| 34 | os.Remove("bug2.o") |
| 35 | os.Remove("a.out") |
Josh Bleecher Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | func run(name string, args ...string) { |
| 39 | cmd := exec.Command(name, args...) |
| 40 | out, err := cmd.CombinedOutput() |
| 41 | if err != nil { |
| 42 | fmt.Println(string(out)) |
| 43 | fmt.Println(err) |
| 44 | os.Exit(1) |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | func check(err error) { |
| 49 | if err != nil { |
| 50 | fmt.Println(err) |
| 51 | os.Exit(1) |
| 52 | } |
| 53 | } |