From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:54
|
Commit-ID: f2710ca1143a52b9969bc7295c262dedb67bb50f Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=f2710ca1143a52b9969bc7295c262dedb67bb50f Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 20:15:42 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:46 +0300 test: nasm-t -- Skip descriptors without description Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- travis/nasm-t.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/travis/nasm-t.py b/travis/nasm-t.py index 2a30733..49c547f 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 # |