summaryrefslogtreecommitdiff
path: root/travis/nasm-t.py
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2018-11-04 20:15:42 +0300
committerCyrill Gorcunov <gorcunov@gmail.com>2018-11-11 21:43:46 +0300
commitf2710ca1143a52b9969bc7295c262dedb67bb50f (patch)
tree496bc1d1c792215841d8c5b48600c942506dcc36 /travis/nasm-t.py
parent23c180ea2c566fe264afd139026c9c448d291927 (diff)
downloadnasm-f2710ca1143a52b9969bc7295c262dedb67bb50f.tar.gz
test: nasm-t -- Skip descriptors without description
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'travis/nasm-t.py')
-rwxr-xr-xtravis/nasm-t.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/travis/nasm-t.py b/travis/nasm-t.py
index 2a30733b..49c547f3 100755
--- a/travis/nasm-t.py
+++ b/travis/nasm-t.py
@@ -62,7 +62,9 @@ def is_valid_desc(desc):
if desc == None:
return False
if 'description' not in desc:
- return false
+ return False
+ if desc['description'] == "":
+ return False
return True
#