Change error to warning for magic/netgen.

This commit is contained in:
Matt Guthaus 2017-11-14 15:49:47 -08:00
parent 40410cc9f5
commit 4285e576f8
2 changed files with 8 additions and 3 deletions

View File

@ -188,6 +188,8 @@ def get_tool(tool_type, preferences):
return(exe_name)
else:
debug.info(1, "Could not find {0}, trying next {1} tool.".format(name,tool_type))
else:
return("")
def end_openram():
""" Clean up openram for a proper exit """

View File

@ -53,7 +53,8 @@ def run_drc(name, gds_name):
"""Run DRC check on a given top-level name which is
implemented in gds_name."""
debug.error("DRC using magic not implemented.",-1)
debug.warning("DRC using magic not implemented.")
return 0
OPTS = globals.get_opts()
# the runset file contains all the options to run drc
@ -124,7 +125,8 @@ def run_lvs(name, gds_name, sp_name):
"""Run LVS check on a given top-level name which is
implemented in gds_name and sp_name. """
debug.error("LVS using magic+netgen not implemented.",-1)
debug.warning("LVS using magic+netgen not implemented.")
return 0
OPTS = globals.get_opts()
from tech import drc
@ -237,7 +239,8 @@ def run_pex(name, gds_name, sp_name, output=None):
"""Run pex on a given top-level name which is
implemented in gds_name and sp_name. """
debug.error("PEX using magic not implemented.",-1)
debug.warning("PEX using magic not implemented.")
return 0
OPTS = globals.get_opts()
from tech import drc