mirror of https://github.com/golang/go.git
misc/cgo: re-enable testso
Also enabled it for darwin. R=rsc CC=golang-dev https://golang.org/cl/5754063
This commit is contained in:
parent
c10650979f
commit
152a1aa610
|
|
@ -1,22 +0,0 @@
|
||||||
# Copyright 2011 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.
|
|
||||||
|
|
||||||
include ../../../src/Make.inc
|
|
||||||
|
|
||||||
TARG=cgosotest
|
|
||||||
|
|
||||||
CGO_DEPS+=libcgoso.so
|
|
||||||
CGO_LDFLAGS+=-lcgoso -L.
|
|
||||||
CLEANFILES+=out libcgoso.so
|
|
||||||
CGOFILES=\
|
|
||||||
cgoso.go\
|
|
||||||
|
|
||||||
include ../../../src/Make.pkg
|
|
||||||
|
|
||||||
libcgoso.so: cgoso_c.c
|
|
||||||
gcc cgoso_c.c -fPIC -o $@ $(_CGO_CFLAGS_$(GOARCH)) $(_CGO_LDFLAGS_$(GOOS))
|
|
||||||
|
|
||||||
out: install main.go
|
|
||||||
$(GC) $(GCFLAGS) $(GCIMPORTS) main.go
|
|
||||||
$(LD) -o $@ main.$O
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
package cgosotest
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestCgoSo(t *testing.T) { Test() }
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
// Copyright 2011 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.
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import "cgosotest"
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
cgosotest.Test()
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# Copyright 2011 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.
|
|
||||||
|
|
||||||
set -e
|
|
||||||
gomake out
|
|
||||||
LD_LIBRARY_PATH=. ./out
|
|
||||||
gomake clean
|
|
||||||
|
|
@ -57,13 +57,10 @@ BROKEN=true
|
||||||
go test
|
go test
|
||||||
) || exit $?
|
) || exit $?
|
||||||
|
|
||||||
$BROKEN ||
|
|
||||||
[ "$CGO_ENABLED" != 1 ] ||
|
[ "$CGO_ENABLED" != 1 ] ||
|
||||||
[ "$GOHOSTOS" == windows ] ||
|
[ "$GOHOSTOS" == windows ] ||
|
||||||
[ "$GOHOSTOS" == darwin ] ||
|
|
||||||
(xcd ../misc/cgo/testso
|
(xcd ../misc/cgo/testso
|
||||||
"$GOMAKE" clean
|
go test
|
||||||
./test.bash
|
|
||||||
) || exit $?
|
) || exit $?
|
||||||
|
|
||||||
(xcd ../doc/progs
|
(xcd ../doc/progs
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue