Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for carchive_test (0.59 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    // license that can be found in the LICENSE file.
    
    // This test uses various syscall.SIG* constants that are defined on Unix
    // platforms and Windows.
    
    //go:build unix || windows
    
    package carchive_test
    
    import (
    	"bufio"
    	"bytes"
    	"cmd/cgo/internal/cgotest"
    	"debug/elf"
    	"flag"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. src/runtime/signal_darwin_amd64.go

    		// as I type this comment.
    		//
    		// Note: if this code is removed, please consider
    		// enabling TestSignalForwardingGo for darwin-amd64 in
    		// misc/cgo/testcarchive/carchive_test.go.
    		if c.sigcode() == _SI_USER {
    			c.set_sigcode(_SI_USER + 1)
    			c.set_sigaddr(0xb01dfacedebac1e)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Split GOGCCFLAGS, respecting quoting.
    	//
    	// TODO(bcmills): This code also appears in
    	// cmd/cgo/internal/testcarchive/carchive_test.go, and perhaps ought to go in
    	// src/cmd/dist/test.go as well. Figure out where to put it so that it can be
    	// shared.
    	var flags []string
    	quote := '\000'
    	start := 0
    	lastSpace := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/distpack/archive_test.go

    Russ Cox <******@****.***> 1674165847 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 21:29:13 UTC 2023
    - 938 bytes
    - Viewed (0)
  5. src/cmd/internal/archive/archive_test.go

    Bryan C. Mills <******@****.***> 1675352566 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 19:27:33 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/internal/xcoff/ar_test.go

    // license that can be found in the LICENSE file.
    
    package xcoff
    
    import (
    	"reflect"
    	"testing"
    )
    
    type archiveTest struct {
    	file              string
    	hdr               ArchiveHeader
    	members           []*MemberHeader
    	membersFileHeader []FileHeader
    }
    
    var archTest = []archiveTest{
    	{
    		"testdata/bigar-ppc64",
    		ArchiveHeader{AIAMAGBIG},
    		[]*MemberHeader{
    			{"printbye.o", 836},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 22:19:22 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top