[llvm/test/Object] - Cleanup and move out the yaml2obj tests.
authorGeorge Rimar <grimar@accesssoftek.com>
Tue, 6 Aug 2019 08:02:25 +0000 (08:02 +0000)
committerGeorge Rimar <grimar@accesssoftek.com>
Tue, 6 Aug 2019 08:02:25 +0000 (08:02 +0000)
commitc056dd150223cd9d500d5e0455391bf5fbec8cf3
treed759316ca70494bd5e7381c36cf3ee0022b8c52d
parentebc2cf9c27d17f8c0ee806be7cfd2b88db74efa3
[llvm/test/Object] - Cleanup and move out the yaml2obj tests.

There are multiple yaml2obj-* tests in llvm/test/Object
folder. This is not correct place to have them and my intention
was to move them out to test\tools\yaml2obj folder. I reviewed
them, made some changes, and my comments are below.

For all tests I:

Added comments when needed.
Moved them from llvm/test/Object to yaml2obj tests.
Another changes performed:

1) yaml2obj-invalid.yaml. It was a test for an invalid YAML input.
I just moved it.

2) yaml2obj-coff-multi-doc.test/yaml2obj-elf-multi-doc.test:
these were a tests for testing --docnum=x functionality,
one was for COFF and one for ELF. I merged them into one.

3) yaml2obj-elf-bits-endian.test:
I removed its 4 YAML inputs (merged into the main test).

4) yaml2obj-readobj.test:
This file has a long history. It was added to check the
"parsing of header charactestics" initially. Then was used to test
how yaml2obj writes the relocations. Then was upgraded to check how
yaml2obj handle "-o" option. I think it should be heavily splitted
and refactored in a separate patch. For now I leaved it as is, but restyled
to reduce the changes in a follow-ups.

5) yaml2obj-elf-alignment.yaml: its intention was to check we
can set sh-addralign field. I moved, renamed (to elf-sh-addralign.yaml)
and updated this test.

6) yaml2obj-elf-file-headers.yaml: I removed it.
It's intention was to check that
yaml2obj handles OS/ABI and ELF type (e.g Relocatable).
We are testing this already, for example in D64800. We might want
to add a better (more complete) test, but keeping the existent test
does not have much sense I think.

7) yaml2obj-elf-file-headers-with-e_flags.yaml: I would describe its intention
as "testing MIPS e_flags". It is far from being complete and tests only
a few flags. I leaved it alone for now.

8) yaml2obj-elf-rel.yaml: its intention is to check the MIPS32 relocations.
We have a version for MIPS64 here: test\Object\Mips\elf-mips64-rel.yaml
Seems them both are incomplete. I leaved them alone for now.

9) yaml2obj-elf-rel-noref.yaml: was introduced to check the support of arm32
R_ARM_V4BX relocatiion. I leaved it alone for now.

10) yaml2obj-elf-section-basic.yaml: it just checked that we are able to recognise
trivial fields like section 'Name', 'Type', 'Flags' and others. All of our yaml2obj
tests are heavily using it. I just removed this test.

11) yaml2obj-elf-section-invalid-size.yaml: its intention was to check the
"Section size must be greater than or equal to the content size" error.
I moved this test to `tools\yaml2obj\section-size-content.yaml'

12) yaml2obj-elf-symbol-basic.yaml: its intention seems was to support declarations
of the symbols in yaml2obj. I removed it. We use this in almost each test we already have.

13) yaml2obj-elf-symbol-LocalGlobalWeak.yaml: its intention was to check that we can
declare different symbol bindings. I moved it to tools\yaml2obj\elf-symbol-binding.yaml.

14) yaml2obj-coff-invalid-alignment.test: check that error is reported for a too large coff
section alignment. Moved it to tools\yaml2obj\coff-invalid-alignment.test

15) yaml2obj-elf-symbol-visibility.yaml: tests ELF symbols visibility. I improved it and
moved to tools\yaml2obj\elf-symbol-visibility.yaml and tools\obj2yaml\elf-symbol-visibility.yaml

Differential revision: https://reviews.llvm.org/D65652

llvm-svn: 367988
22 files changed:
llvm/test/Object/Inputs/ELF/BE32.yaml [deleted file]
llvm/test/Object/Inputs/ELF/BE64.yaml [deleted file]
llvm/test/Object/Inputs/ELF/LE32.yaml [deleted file]
llvm/test/Object/Inputs/ELF/LE64.yaml [deleted file]
llvm/test/Object/yaml2obj-elf-alignment.yaml [deleted file]
llvm/test/Object/yaml2obj-elf-bits-endian.test [deleted file]
llvm/test/Object/yaml2obj-elf-file-headers.yaml [deleted file]
llvm/test/Object/yaml2obj-elf-multi-doc.test [deleted file]
llvm/test/Object/yaml2obj-elf-section-basic.yaml [deleted file]
llvm/test/Object/yaml2obj-elf-section-invalid-size.yaml [deleted file]
llvm/test/Object/yaml2obj-elf-symbol-basic.yaml [deleted file]
llvm/test/Object/yaml2obj-elf-symbol-visibility.yaml [deleted file]
llvm/test/Object/yaml2obj-readobj.test
llvm/test/tools/obj2yaml/elf-symbol-visibility.yaml [new file with mode: 0644]
llvm/test/tools/yaml2obj/coff-invalid-alignment.test [moved from llvm/test/Object/yaml2obj-coff-invalid-alignment.test with 86% similarity]
llvm/test/tools/yaml2obj/elf-class-endianness.test [new file with mode: 0644]
llvm/test/tools/yaml2obj/elf-sh-addralign.yaml [new file with mode: 0644]
llvm/test/tools/yaml2obj/elf-symbol-binding.yaml [moved from llvm/test/Object/yaml2obj-elf-symbol-LocalGlobalWeak.yaml with 71% similarity]
llvm/test/tools/yaml2obj/elf-symbol-visibility.yaml [new file with mode: 0644]
llvm/test/tools/yaml2obj/invalid-yaml.yaml [moved from llvm/test/Object/yaml2obj-invalid.yaml with 100% similarity]
llvm/test/tools/yaml2obj/multi-doc.test [moved from llvm/test/Object/yaml2obj-coff-multi-doc.test with 69% similarity]
llvm/test/tools/yaml2obj/section-size-content.yaml