Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XTestSPWrite (0.14 sec)

  1. src/runtime/tracebackx_test.go

    // Copyright 2023 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 runtime
    
    func XTestSPWrite(t TestingT) {
    	// Test that we can traceback from the stack check prologue of a function
    	// that writes to SP. See #62326.
    
    	// Start a goroutine to minimize the initial stack and ensure we grow the stack.
    	done := make(chan bool)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 509 bytes
    - Viewed (0)
  2. src/runtime/import_test.go

    	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