test: nasm-t -- Add vmread test

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2018-11-03 20:03:06 +03:00
parent 498d36038a
commit 5fc8791857
4 changed files with 50 additions and 0 deletions

24
travis/test/vmread.asm Normal file
View File

@ -0,0 +1,24 @@
bits 32
vmread dword [0], eax
vmwrite eax, dword [0]
vmread [0], eax
vmwrite eax, [0]
bits 64
vmread qword [0], rax
vmwrite rax, qword [0]
vmread [0], rax
vmwrite rax, [0]
%ifdef ERROR
bits 32
vmread qword [0], eax
vmwrite eax, qword [0]
bits 64
vmread dword [0], eax
vmwrite eax, dword [0]
vmread qword [0], eax
vmwrite eax, qword [0]
%endif

BIN
travis/test/vmread.bin.t Normal file

Binary file not shown.

20
travis/test/vmread.json Normal file
View File

@ -0,0 +1,20 @@
[
{
"description": "Test vmread instruction",
"id": "vmread",
"format": "bin",
"source": "vmread.asm",
"target": [
{ "output": "vmread.bin" }
]
},
{
"description": "Test errors in vmread instruction",
"ref": "vmread",
"option": "-DERROR",
"target": [
{ "stderr": "vmread.stderr" }
],
"error": "expected"
}
]

View File

@ -0,0 +1,6 @@
./travis/test/vmread.asm:15: error: invalid combination of opcode and operands
./travis/test/vmread.asm:16: error: invalid combination of opcode and operands
./travis/test/vmread.asm:19: error: instruction not supported in 64-bit mode
./travis/test/vmread.asm:20: error: instruction not supported in 64-bit mode
./travis/test/vmread.asm:22: error: invalid combination of opcode and operands
./travis/test/vmread.asm:23: error: invalid combination of opcode and operands