mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
test: nasm-t -- Add vmread test
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
498d36038a
commit
5fc8791857
24
travis/test/vmread.asm
Normal file
24
travis/test/vmread.asm
Normal 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
BIN
travis/test/vmread.bin.t
Normal file
Binary file not shown.
20
travis/test/vmread.json
Normal file
20
travis/test/vmread.json
Normal 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"
|
||||
}
|
||||
]
|
6
travis/test/vmread.stderr
Normal file
6
travis/test/vmread.stderr
Normal 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
|
Loading…
x
Reference in New Issue
Block a user