summaryrefslogtreecommitdiffstats
path: root/development/google-go-lang/runtime-test-capture.patch
diff options
context:
space:
mode:
author Vincent Batts <vbatts@hashbangbash.com>2015-03-10 22:53:47 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-03-10 22:53:47 +0700
commitd2cfc2ec6858bd00671818193524a2c4294016b2 (patch)
treebb752c988d303556ffdc33031208cb31847bcaed /development/google-go-lang/runtime-test-capture.patch
parentd4c85d4c4d23513e86c7ec3f4ab0c340079de0f2 (diff)
downloadslackbuilds-d2cfc2ec6858bd00671818193524a2c4294016b2.tar.gz
slackbuilds-d2cfc2ec6858bd00671818193524a2c4294016b2.tar.xz
development/google-go-lang: Updated for version 1.4.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--development/google-go-lang/runtime-test-capture.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/development/google-go-lang/runtime-test-capture.patch b/development/google-go-lang/runtime-test-capture.patch
deleted file mode 100644
index a24284362b..0000000000
--- a/development/google-go-lang/runtime-test-capture.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -r 9c4fdd8369ca src/pkg/runtime/crash_cgo_test.go
---- a/src/pkg/runtime/crash_cgo_test.go Mon May 05 10:43:37 2014 -0700
-+++ b/src/pkg/runtime/crash_cgo_test.go Tue May 06 17:21:45 2014 -0400
-@@ -8,6 +8,7 @@
-
- import (
- "runtime"
-+ "strings"
- "testing"
- )
-
-@@ -21,7 +22,7 @@
- }
- got := executeTest(t, cgoSignalDeadlockSource, nil)
- want := "OK\n"
-- if got != want {
-+ if !strings.Contains(got, want) {
- t.Fatalf("expected %q, but got %q", want, got)
- }
- }
-@@ -29,7 +30,7 @@
- func TestCgoTraceback(t *testing.T) {
- got := executeTest(t, cgoTracebackSource, nil)
- want := "OK\n"
-- if got != want {
-+ if !strings.Contains(got, want) {
- t.Fatalf("expected %q, but got %q", want, got)
- }
- }