Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ErrNoSymbols (0.16 sec)

  1. src/debug/elf/file_test.go

    		if !reflect.DeepEqual(tl, fl) {
    			t.Errorf("open %s: DT_NEEDED = %v, want %v", tt.file, tl, fl)
    		}
    		symbols, err := f.Symbols()
    		if tt.symbols == nil {
    			if !errors.Is(err, ErrNoSymbols) {
    				t.Errorf("open %s: Symbols() expected ErrNoSymbols, have nil", tt.file)
    			}
    			if symbols != nil {
    				t.Errorf("open %s: Symbols() expected no symbols, have %v", tt.file, symbols)
    			}
    		} else {
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top