[fbt-commit] SF.net SVN: fbt:[83] trunk/bin/synplify_wrapper.py
Status: Beta
Brought to you by:
dave_infj
|
From: <dav...@us...> - 2010-03-01 16:58:13
|
Revision: 83
http://fbt.svn.sourceforge.net/fbt/?rev=83&view=rev
Author: dave_infj
Date: 2010-03-01 16:58:05 +0000 (Mon, 01 Mar 2010)
Log Message:
-----------
hack to ignore stupid "found ram pair" message.
Modified Paths:
--------------
trunk/bin/synplify_wrapper.py
Modified: trunk/bin/synplify_wrapper.py
===================================================================
--- trunk/bin/synplify_wrapper.py 2010-01-26 20:09:03 UTC (rev 82)
+++ trunk/bin/synplify_wrapper.py 2010-03-01 16:58:05 UTC (rev 83)
@@ -69,6 +69,11 @@
# them to errors
to_error = ['BN105', # Cannot apply constraint x to y
]
+
+# at_ignores is a list of lines beginning with @ which should be ignored.
+at_ignores = ['@END',
+ '@ found ram pair' # God knows what that's all about.
+ ]
def translate_log( log ):
@@ -158,7 +163,7 @@
for line in sil:
# Want only useful messages (^@), and not @END lines
line = line.strip()
- if not line.startswith('@') or line == '@END':
+ if not line.startswith('@') or line in at_ignores:
continue
match = m_parse_log.search( line )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|