OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.22.0
/
src
/
cmd
/
nm
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/02/2024 06:09:55 PM
rwxr-xr-x
📄
doc.go
1.25 KB
02/02/2024 06:09:55 PM
rw-r--r--
📄
nm.go
2.99 KB
02/02/2024 06:09:55 PM
rw-r--r--
📄
nm_cgo_test.go
533 bytes
02/02/2024 06:09:55 PM
rw-r--r--
📄
nm_test.go
8.76 KB
02/02/2024 06:09:55 PM
rw-r--r--
Editing: nm_cgo_test.go
Close
// Copyright 2017 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 ( "internal/testenv" "testing" ) func TestInternalLinkerCgoExec(t *testing.T) { testenv.MustHaveCGO(t) testenv.MustInternalLink(t, true) testGoExec(t, true, false) } func TestExternalLinkerCgoExec(t *testing.T) { testenv.MustHaveCGO(t) testGoExec(t, true, true) } func TestCgoLib(t *testing.T) { testenv.MustHaveCGO(t) testGoLib(t, true) }