We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff96ae3 commit 463600aCopy full SHA for 463600a
travis/nasm-t.py
@@ -63,7 +63,7 @@
63
required = False)
64
spp.add_argument('--error',
65
dest = 'error',
66
- help = 'Set to "y" if test is supposed to fail',
+ help = '"y" if test is supposed to fail or "i" to ignore',
67
68
spp.add_argument('--output',
69
dest = 'output', default = 'y',
@@ -500,7 +500,9 @@ def test_update(desc):
500
if args.ref:
501
acc.append("\t\t\"ref\": \"{}\"".format(args.ref))
502
if args.error == 'y':
503
- acc.append("\t\t\"error\": \"true\"")
+ acc.append("\t\t\"error\": \"expected\"")
504
+ elif args.error == 'i':
505
+ acc.append("\t\t\"error\": \"over\"")
506
f.write(",\n".join(acc).encode("utf-8"))
507
if args.output or args.stdout or args.stderr:
508
acc = []
0 commit comments