Commit 8ca524ab authored by Than McIntosh's avatar Than McIntosh

cmd/link: new test case for Darwin/DWARF

Test case for issue 32233.

Updates #32233.

Change-Id: I0e3b4a46832f39de4ef36d8fd8c6070bf9b1a019
Reviewed-on: https://go-review.googlesource.com/c/go/+/178726Reviewed-by: default avatarCherry Zhang <cherryyz@google.com>
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 7e05e974
......@@ -1195,3 +1195,26 @@ func TestPackageNameAttr(t *testing.T) {
}
}
}
func TestMachoIssue32233(t *testing.T) {
testenv.MustHaveGoBuild(t)
testenv.MustHaveCGO(t)
if runtime.GOOS != "darwin" {
t.Skip("skipping; test only interesting on darwin")
}
tmpdir, err := ioutil.TempDir("", "TestMachoIssue32233")
if err != nil {
t.Fatalf("could not create directory: %v", err)
}
defer os.RemoveAll(tmpdir)
wd, err2 := os.Getwd()
if err2 != nil {
t.Fatalf("where am I? %v", err)
}
pdir := filepath.Join(wd, "testdata", "issue32233", "main")
f := gobuildTestdata(t, tmpdir, pdir, DefaultOpt)
f.Close()
}
// Copyright 2019 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.
#import <Foundation/Foundation.h>
#import <UserNotifications/UserNotifications.h>
BOOL function(void) {
if (@available(macOS 10.14, *)) {
UNUserNotificationCenter *center =
[UNUserNotificationCenter currentNotificationCenter];
}
return NO;
}
// Copyright 2019 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 lib
/*
#cgo darwin CFLAGS: -mmacosx-version-min=10.10 -D__MAC_OS_X_VERSION_MAX_ALLOWED=101450 -Wunguarded-availability-new
#cgo darwin LDFLAGS: -framework Foundation -framework UserNotifications
#include "stdlib.h"
int function(void);
*/
import "C"
import "fmt"
func DoC() {
C.function()
fmt.Println("called c function")
}
// Copyright 2019 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 "cmd/link/internal/ld/testdata/issue32233/lib"
func main() {
lib.DoC()
}
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