mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-15 09:09:58 +08:00
40 lines
788 B
JSON
40 lines
788 B
JSON
|
[
|
||
|
{
|
||
|
"description": "Test jmp optimization",
|
||
|
"id": "fwdoptpp",
|
||
|
"format": "bin",
|
||
|
"source": "fwdoptpp.asm",
|
||
|
"option": "-Ox",
|
||
|
"target": [
|
||
|
{ "output": "fwdoptpp.bin" }
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"description": "Test warning directive",
|
||
|
"ref": "fwdoptpp",
|
||
|
"option": "-O0 -DWARNING",
|
||
|
"target": [
|
||
|
{ "output": "fwdoptpp.warning.bin" },
|
||
|
{ "stderr": "fwdoptpp.warning.stderr" }
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"description": "Test error directive",
|
||
|
"ref": "fwdoptpp",
|
||
|
"option": "-O0 -DERROR -o fwdoptpp.null.bin",
|
||
|
"target": [
|
||
|
{ "stderr": "fwdoptpp.error.stderr" }
|
||
|
],
|
||
|
"error": "expected"
|
||
|
},
|
||
|
{
|
||
|
"description": "Test fatal directive",
|
||
|
"ref": "fwdoptpp",
|
||
|
"option": "-O0 -DFATAL -o fwdoptpp.null.bin",
|
||
|
"target": [
|
||
|
{ "stderr": "fwdoptpp.fatal.stderr" }
|
||
|
],
|
||
|
"error": "expected"
|
||
|
}
|
||
|
]
|