mirror of
https://github.com/netwide-assembler/nasm.git
synced 2026-01-26 08:07:53 +00:00
Always generate a list file and point output at a given filename, even if failure is expected. Remove ad hoc -o output names that generally don't point into safe locations. The result is that the preprocessing options (-E) no longer output to stdout, so change the tests accordingly. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
41 lines
891 B
JSON
41 lines
891 B
JSON
[
|
|
{
|
|
"description": "Test of explicitly and implicitly sized operands (-O0)",
|
|
"id": "expimp",
|
|
"format": "bin",
|
|
"source": "expimp.asm",
|
|
"option": "-O0",
|
|
"target": [
|
|
{ "output": "expimp-o0.bin" },
|
|
{ "stderr": "expimp-o0.stderr" }
|
|
]
|
|
},
|
|
{
|
|
"description": "Test of explicitly and implicitly sized operands (-O1)",
|
|
"ref": "expimp",
|
|
"option": "-O1",
|
|
"target": [
|
|
{ "output": "expimp-o1.bin" },
|
|
{ "stderr": "expimp-o1.stderr" }
|
|
]
|
|
},
|
|
{
|
|
"description": "Test of explicitly and implicitly sized operands (-Ox)",
|
|
"ref": "expimp",
|
|
"option": "-Ox -DERROR",
|
|
"target": [
|
|
{ "stderr": "expimp-ox-error.stderr" }
|
|
],
|
|
"error": "expected"
|
|
},
|
|
{
|
|
"description": "Test of explicitly and implicitly sized operands (-O0 error)",
|
|
"ref": "expimp",
|
|
"option": "-O0 -DERROR",
|
|
"target": [
|
|
{ "stderr": "expimp-o0-error.stderr" }
|
|
],
|
|
"error": "expected"
|
|
}
|
|
]
|