forked from aniani/nasm
40 lines
845 B
JSON
40 lines
845 B
JSON
[
|
|
{
|
|
"description": "Test all the flavors of RET",
|
|
"id": "ret",
|
|
"format": "bin",
|
|
"source": "ret.asm",
|
|
"option": "-Ox -DTEST_BITS_16 -DTEST_BITS_32 -DTEST_BITS_64",
|
|
"target": [
|
|
{ "output": "ret.bin" }
|
|
]
|
|
},
|
|
{
|
|
"description": "Test all the flavors of RET (err 16 bit)",
|
|
"ref": "ret",
|
|
"option": "-DERROR -DTEST_BITS_16 -o ret.bin",
|
|
"target": [
|
|
{ "stderr": "ret-16.stderr" }
|
|
],
|
|
"error": "expected"
|
|
},
|
|
{
|
|
"description": "Test all the flavors of RET (err 32 bit)",
|
|
"ref": "ret",
|
|
"option": "-DERROR -DTEST_BITS_32 -o ret.bin",
|
|
"target": [
|
|
{ "stderr": "ret-32.stderr" }
|
|
],
|
|
"error": "expected"
|
|
},
|
|
{
|
|
"description": "Test all the flavors of RET (err 64 bit)",
|
|
"ref": "ret",
|
|
"option": "-DERROR -DTEST_BITS_64 -o ret.bin",
|
|
"target": [
|
|
{ "stderr": "ret-64.stderr" }
|
|
],
|
|
"error": "expected"
|
|
}
|
|
]
|