0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-07-24 10:25:42 -04:00

test: nasm-t -- Skip descriptors without description

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2018-11-04 20:15:42 +03:00
parent 23c180ea2c
commit f2710ca114

View File

@ -62,7 +62,9 @@ def is_valid_desc(desc):
if desc == None: if desc == None:
return False return False
if 'description' not in desc: if 'description' not in desc:
return false return False
if desc['description'] == "":
return False
return True return True
# #