Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Side by Side Diff: tests_lit/llvm2ice_tests/elf_nodata.ll

Issue 1531623007: Add option to force filetype=asm for testing (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Function parameters are now pnacl abi compliant. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 ; Tests that we generate an ELF container correctly when there 1 ; Tests that we generate an ELF container correctly when there
2 ; is no data section. 2 ; is no data section.
3 3
4 ; RUN: %p2i -i %s --filetype=obj --args -O2 -o %t \ 4 ; RUN: %p2i -i %s --filetype=obj --output %t --args -O2 \
5 ; RUN: && llvm-readobj -file-headers -sections -section-data \ 5 ; RUN: && llvm-readobj -file-headers -sections -section-data \
6 ; RUN: -relocations -symbols %t | FileCheck %s 6 ; RUN: -relocations -symbols %t | FileCheck %s
7 7
8 ; RUN: %if --need=allow_dump --command %p2i -i %s --args -O2 \ 8 ; RUN: %if --need=allow_dump --command %p2i -i %s --args -O2 \
9 ; RUN: | %if --need=allow_dump --command \ 9 ; RUN: | %if --need=allow_dump --command \
10 ; RUN: llvm-mc -triple=i686-nacl -filetype=obj -o - \ 10 ; RUN: llvm-mc -triple=i686-nacl -filetype=obj -o - \
11 ; RUN: | %if --need=allow_dump --command \ 11 ; RUN: | %if --need=allow_dump --command \
12 ; RUN: llvm-readobj -file-headers -sections -section-data \ 12 ; RUN: llvm-readobj -file-headers -sections -section-data \
13 ; RUN: -relocations -symbols - \ 13 ; RUN: -relocations -symbols - \
14 ; RUN: | %if --need=allow_dump --command FileCheck %s 14 ; RUN: | %if --need=allow_dump --command FileCheck %s
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 ; CHECK: Symbol { 119 ; CHECK: Symbol {
120 ; CHECK: Name: memcpy 120 ; CHECK: Name: memcpy
121 ; CHECK-NEXT: Value: 0x0 121 ; CHECK-NEXT: Value: 0x0
122 ; CHECK-NEXT: Size: 0 122 ; CHECK-NEXT: Size: 0
123 ; CHECK-NEXT: Binding: Global 123 ; CHECK-NEXT: Binding: Global
124 ; CHECK-NEXT: Type: None 124 ; CHECK-NEXT: Type: None
125 ; CHECK-NEXT: Other: 0 125 ; CHECK-NEXT: Other: 0
126 ; CHECK-NEXT: Section: Undefined 126 ; CHECK-NEXT: Section: Undefined
127 ; CHECK-NEXT: } 127 ; CHECK-NEXT: }
128 ; CHECK: ] 128 ; CHECK: ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698