When the MachODebugMapParser encounters an object file that cannot be found on disk, it currently leaves the parser in an incoherent state, resulting in spurious warnings that can in turn slow down dsymutil. This fixes #78411. rdar://117515153
6 lines
290 B
Plaintext
6 lines
290 B
Plaintext
RUN: dsymutil -oso-prepend-path %p/../Inputs --dump-debug-map %p/../Inputs/private/tmp/missing/foobar.out 2>&1 | FileCheck %s
|
|
|
|
CHECK: bar.o unable to open object file
|
|
CHECK-NOT: could not find object file symbol for symbol _bar
|
|
CHECK-NOT: could not find object file symbol for symbol _main
|