3 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
5 # RUN: echo "A B C 100" > %t.call_graph
6 # RUN: not ld.lld %t --call-graph-ordering-file \
7 # RUN: %t.call_graph -o /dev/null 2>&1 | FileCheck %s
9 # CHECK: {{.*}}.call_graph: parse error
11 # RUN: echo "A B C" > %t.call_graph
12 # RUN: not ld.lld %t --call-graph-ordering-file \
13 # RUN: %t.call_graph -o /dev/null 2>&1 | FileCheck %s