0
0
forked from aniani/nasm
Files
nasm/travis/test/ret.json
Cyrill Gorcunov 91d0980bfa travis: add ret
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
2020-08-25 18:05:33 +03:00

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"
}
]