Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XTestInlineUnwinder (0.53 sec)

  1. src/runtime/symtabinl_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/stringslite"
    	"runtime/internal/sys"
    )
    
    func XTestInlineUnwinder(t TestingT) {
    	if TestenvOptimizationOff() {
    		t.Skip("skipping test with inlining optimizations disabled")
    	}
    
    	pc1 := abi.FuncPCABIInternal(tiuTest)
    	f := findfunc(pc1)
    	if !f.valid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/runtime/import_test.go

    	"runtime"
    	"testing"
    )
    
    func init() {
    	runtime.FmtSprintf = fmt.Sprintf
    	runtime.TestenvOptimizationOff = testenv.OptimizationOff
    }
    
    func TestInlineUnwinder(t *testing.T) {
    	runtime.XTestInlineUnwinder(t)
    }
    
    func TestSPWrite(t *testing.T) {
    	runtime.XTestSPWrite(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top