Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for carchive_test (3.73 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/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)
Back to top