1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-13 02:48:59 +00:00
bddisasm/bddisasm_test
Andrei Vlad LUTAS 4b2f2aee66 Added dedicated Prefetch operand access type.
Internally, store the access type sepparately than the flags.
Dump conditional operand accesses with exi option too.
2020-07-25 17:16:35 +03:00
..
amx Initial commit. 2020-07-21 11:19:18 +03:00
avx Added dedicated Prefetch operand access type. 2020-07-25 17:16:35 +03:00
avx512 Added dedicated Prefetch operand access type. 2020-07-25 17:16:35 +03:00
basic Added dedicated Prefetch operand access type. 2020-07-25 17:16:35 +03:00
cet Added the Shadow Stack Pointer operand to the SYSRET and SYSENTER instructions. 2020-07-22 09:15:29 +03:00
simd Fixed RET with immediate - the immediate is not sign-extended. 2020-07-23 14:08:01 +03:00
special Added dedicated Prefetch operand access type. 2020-07-25 17:16:35 +03:00
README.md Initial commit. 2020-07-21 11:19:18 +03:00
test_all.py Initial commit. 2020-07-21 11:19:18 +03:00

Disassembler Tests

These tests are used to validate bddisasm. Each test consists of up to three files:

  • The binary test file. The name format for this type of file is name_16|32|64. No extension must be provided; 16/32/64 indicates disassembly mode
  • The output result file. Must be named the same as the binary test file, but with the extension .result
  • Optional assembly file, used to generate the binary test file

The test_all.py script will iterate all the test folders, and it will run bddisasm on each identified test file. The result file will be compared with the output of the test run. If they are not the same, the test will fail. Note that bddisasm will be run with the -exi option, in order to dump all possible information about the instructions.

NOTE: This test will assume disasm is in the path. Works on Windows only.