X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8a94013d0abeeb5824c06070251b4d0760ed6b43..83d62d72a9468f9f8e97b677dd40d5a2bd60ba86:/src/simix/simcalls.py diff --git a/src/simix/simcalls.py b/src/simix/simcalls.py index ae5f79a1fd..d757d8153c 100755 --- a/src/simix/simcalls.py +++ b/src/simix/simcalls.py @@ -193,7 +193,8 @@ def parse(fn): continue match = re.match( r'^(\S+)\s+([^\)\(\s]+)\s*\(*(.*)\)\s*(\[\[.*\]\])?\s*;\s*?$', line) - assert match, line + if not match: + raise AssertionError(line) ret, name, args, attrs = match.groups() sargs = [] if not re.match(r"^\s*$", args): @@ -217,7 +218,7 @@ def parse(fn): elif attr == "nohandler": handler = False else: - assert False, "Unknown attribute %s in: %s" % (attr, line) + raise AssertionError("Unknown attribute %s in: %s" % (attr, line)) sim = Simcall(name, handler, Arg('result', ret), sargs, ans) if resdi is None: simcalls.append(sim)