[nasm:nasm-2.15.xx-travis] travis: nasm-t -- require ID to be present in the descriptor

nasm-bot for Cyrill Gorcunov gorcunov at gmail.com
Tue Aug 25 05:42:14 PDT 2020


Commit-ID:  c384429d33e268b013ccd020ef422cc5ad784393
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=c384429d33e268b013ccd020ef422cc5ad784393
Author:     Cyrill Gorcunov <gorcunov at gmail.com>
AuthorDate: Tue, 25 Aug 2020 15:23:57 +0300
Committer:  Cyrill Gorcunov <gorcunov at gmail.com>
CommitDate: Tue, 25 Aug 2020 15:40:58 +0300

travis: nasm-t -- require ID to be present in the descriptor

Signed-off-by: Cyrill Gorcunov <gorcunov at gmail.com>


---
 travis/nasm-t.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/travis/nasm-t.py b/travis/nasm-t.py
index 3cc43e7e..4310718a 100755
--- a/travis/nasm-t.py
+++ b/travis/nasm-t.py
@@ -124,6 +124,8 @@ def is_valid_desc(desc):
         return False
     if 'description' not in desc:
         return False
+    if 'id' not in desc:
+        return False
     if desc['description'] == "":
         return False
     return True


More information about the Nasm-commits mailing list