Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lldbtest (0.25 sec)

  1. src/runtime/runtime-lldb_test.go

    	err := os.WriteFile(src, []byte(lldbHelloSource), 0644)
    	if err != nil {
    		t.Fatalf("failed to create src file: %v", err)
    	}
    
    	mod := filepath.Join(dir, "go.mod")
    	err = os.WriteFile(mod, []byte("module lldbtest"), 0644)
    	if err != nil {
    		t.Fatalf("failed to create mod file: %v", err)
    	}
    
    	// As of 2018-07-17, lldb doesn't support compressed DWARF, so
    	// disable it for this test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/path/filepath/match_test.go

    		}
    	}
    }
    
    type globTest struct {
    	pattern string
    	matches []string
    }
    
    func (test *globTest) buildWant(root string) []string {
    	want := make([]string, 0)
    	for _, m := range test.matches {
    		want = append(want, root+FromSlash(m))
    	}
    	slices.Sort(want)
    	return want
    }
    
    func (test *globTest) globAbs(root, rootPattern string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top