summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Arteaga <andyspiros@gmail.com>2012-09-03 14:39:04 +0200
committerAndrea Arteaga <andyspiros@gmail.com>2012-09-03 14:39:04 +0200
commit87d6ee6824b86eb893ce7ccaca0c0720424807c7 (patch)
tree4851cc9b2e435a06f33a99ea350e8703cd071c33
parentInitial commit for accuracy lapack. (diff)
downloadauto-numerical-bench-87d6ee6824b86eb893ce7ccaca0c0720424807c7.tar.gz
auto-numerical-bench-87d6ee6824b86eb893ce7ccaca0c0720424807c7.tar.bz2
auto-numerical-bench-87d6ee6824b86eb893ce7ccaca0c0720424807c7.zip
Removed unused variable warning.
-rw-r--r--numbench/modules/internal/accuracyBase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numbench/modules/internal/accuracyBase.py b/numbench/modules/internal/accuracyBase.py
index e6beeb1..92a4b28 100644
--- a/numbench/modules/internal/accuracyBase.py
+++ b/numbench/modules/internal/accuracyBase.py
@@ -118,7 +118,7 @@ def runExe(test, implementation, exe, args):
def runTest(self, test, implementation):
- retcode, exe = compileExe(test, self.libname, implementation)
+ exe = compileExe(test, self.libname, implementation)[1]
runExe(test, implementation, exe, self.tests)
def reportConf(*args):