llvm-project
11 строк · 462.0 Байт
1# REQUIRES: x86
2
3# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-win32 %s -o %t
4
5# RUN: echo "A B C 100" > %t.call_graph
6# RUN: not lld-link /dll /noentry /subsystem:console %t /call-graph-ordering-file:%t.call_graph /out:/dev/null 2>&1 | FileCheck %s
7
8# CHECK: {{.*}}.call_graph: parse error
9
10# RUN: echo "A B C" > %t.call_graph
11# RUN: not lld-link /dll /noentry /subsystem:console %t /call-graph-ordering-file:%t.call_graph /out:/dev/null 2>&1 | FileCheck %s
12