From 2236ca40df830eb6fb7d0427ceb78ea8d63f64ec Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Thu, 3 Jan 2019 19:20:31 -0800 Subject: [PATCH] Make xa least priority since it fails functional tests. --- compiler/characterizer/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/characterizer/__init__.py b/compiler/characterizer/__init__.py index 4a2f161e..19da7d59 100644 --- a/compiler/characterizer/__init__.py +++ b/compiler/characterizer/__init__.py @@ -21,7 +21,7 @@ if not OPTS.analytical_delay: if OPTS.spice_exe=="" or OPTS.spice_exe==None: debug.error("{0} not found. Unable to perform characterization.".format(OPTS.spice_name),1) else: - (OPTS.spice_name,OPTS.spice_exe) = get_tool("spice",["xa", "hspice", "ngspice", "ngspice.exe"]) + (OPTS.spice_name,OPTS.spice_exe) = get_tool("spice",["hspice", "ngspice", "ngspice.exe", "xa"]) # set the input dir for spice files if using ngspice if OPTS.spice_name == "ngspice":