Commit 8d672b26 by Ian Lance Taylor

runtime: Disable crash tests that runs go tool.

From-SVN: r192735
parent 66f2cabc
......@@ -7,7 +7,7 @@ package runtime_test
import (
"io/ioutil"
"os"
"os/exec"
// "os/exec"
"path/filepath"
"runtime"
"testing"
......@@ -50,6 +50,9 @@ func testCrashHandler(t *testing.T, ct *crashTest) {
}
f.Close()
/*
gccgo does not have a go command.
got, err := exec.Command("go", "run", src).CombinedOutput()
if err != nil {
t.Fatalf("program exited with error: %v\n%v", err, string(got))
......@@ -58,6 +61,8 @@ func testCrashHandler(t *testing.T, ct *crashTest) {
if string(got) != string(want) {
t.Fatalf("expected %q, but got %q", string(want), string(got))
}
*/
}
func TestCrashHandler(t *testing.T) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment