[commit: testsuite] master: Driver: Fix % operator typo (f1b6909)

git at git.haskell.org git at git.haskell.org
Mon Sep 23 22:58:28 CEST 2013


Repository : ssh://git@git.haskell.org/testsuite

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/f1b6909e23926b9a404e66ad515762bb3777a735/testsuite

>---------------------------------------------------------------

commit f1b6909e23926b9a404e66ad515762bb3777a735
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Mon Sep 23 22:58:15 2013 +0200

    Driver: Fix % operator typo


>---------------------------------------------------------------

f1b6909e23926b9a404e66ad515762bb3777a735
 driver/testlib.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/driver/testlib.py b/driver/testlib.py
index 68937c6..4694b5e 100644
--- a/driver/testlib.py
+++ b/driver/testlib.py
@@ -821,7 +821,7 @@ def skiptest (name, way):
 
 def framework_fail( name, way, reason ):
     full_name = name + '(' + way + ')'
-    if_verbose(1, '*** framework failure for %s %s ' %s (full_name, reason))
+    if_verbose(1, '*** framework failure for %s %s ' % (full_name, reason))
     t.n_framework_failures = t.n_framework_failures + 1
     if name in t.framework_failures:
         t.framework_failures[name].append(way)




More information about the ghc-commits mailing list