annotate lld/test/COFF/defparser.test @ 192:d7606dcf6fce
Added tag llvm10 for changeset 0572611fdcc8
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Mon, 14 Dec 2020 18:01:34 +0900 |
parents |
1d019706d866 |
children |
2e18cbf3894f |
rev |
line source |
150
|
1 # RUN: yaml2obj < %p/Inputs/ret42.yaml > %t.obj
|
|
2
|
|
3 # RUN: echo -e "LIBRARY foo\nEXPORTS ? @" > %t.def
|
|
4 # RUN: not lld-link /def:%t.def %t.obj
|
|
5
|
|
6 # RUN: echo -e "LIBRARY foo\nHEAP abc" > %t.def
|
|
7 # RUN: not lld-link /def:%t.def %t.obj
|
|
8
|
|
9 # RUN: echo -e "LIBRARY foo\nSTACK abc" > %t.def
|
|
10 # RUN: not lld-link /def:%t.def %t.obj
|
|
11
|
|
12 # RUN: echo -e "foo" > %t.def
|
|
13 # RUN: not lld-link /def:%t.def %t.obj
|