Make pylint happy.
authorTim Newsome <tim@sifive.com>
Mon, 20 Nov 2017 04:54:14 +0000 (20:54 -0800)
committerTim Newsome <tim@sifive.com>
Mon, 20 Nov 2017 04:54:14 +0000 (20:54 -0800)
debug/gdbserver.py
debug/targets.py
debug/testlib.py

index 09938d3f1b049b4e44674be4aa901285c6fdff41..49e42e796ec807b9377165f5d8fb76e62b3fbbde 100755 (executable)
@@ -817,7 +817,8 @@ class PrivRw(PrivTest):
         # Disable physical memory protection by allowing U mode access to all
         # memory.
         self.gdb.p("$pmpcfg0=0xf")  # TOR, R, W, X
-        self.gdb.p("$pmpaddr0=0x%x" % ((self.hart.ram + self.hart.ram_size) >> 2))
+        self.gdb.p("$pmpaddr0=0x%x" %
+                ((self.hart.ram + self.hart.ram_size) >> 2))
 
         # Leave the PC at _start, where the first 4 instructions should be
         # legal in any mode.
index 1401f1d0565c662938417a170535ac5ec43a92e2..2cdbb33454270663b701f549c004624b8f4f326e 100644 (file)
@@ -153,10 +153,10 @@ def add_target_options(parser):
             help="The command to use to start the debug server (e.g. OpenOCD)")
 
     xlen_group = parser.add_mutually_exclusive_group()
-    xlen_group.add_argument("--32", action="store_const", const=32, dest="xlen", default=0,
-            help="Force the target to be 32-bit.")
-    xlen_group.add_argument("--64", action="store_const", const=64, dest="xlen", default=0,
-            help="Force the target to be 64-bit.")
+    xlen_group.add_argument("--32", action="store_const", const=32,
+            dest="xlen", default=0, help="Force the target to be 32-bit.")
+    xlen_group.add_argument("--64", action="store_const", const=64,
+            dest="xlen", default=0, help="Force the target to be 64-bit.")
 
     parser.add_argument("--isolate", action="store_true",
             help="Try to run in such a way that multiple instances can run at "
@@ -180,11 +180,13 @@ def target(parsed):
 
     t = found[0](parsed.target, parsed)
     assert t.harts, "%s doesn't have any harts defined!" % t.name
-    if (parsed.xlen > 0):
-        for h in t.harts :
-            if (h.xlen == 0):
+    if parsed.xlen > 0:
+        for h in t.harts:
+            if h.xlen == 0:
                 h.xlen = parsed.xlen
-            elif (h.xlen != parsed.xlen):
-                raise Exception("The target hart specified an XLEN of %d, but the command line specified an XLEN of %d. They must match." % (h.xlen, parsed.xlen))
+            elif h.xlen != parsed.xlen:
+                raise Exception("The target hart specified an XLEN of %d, but "\
+                        "the command line specified an XLEN of %d. They must "\
+                        "match." % (h.xlen, parsed.xlen))
 
     return t
index b19eafcb865f6bfa97f51674930137843541e86c..90702bf605652b08372a3a96f2b0b4af07403cf7 100644 (file)
@@ -836,8 +836,9 @@ class ExamineTarget(GdbTest):
                 raise TestFailed("Couldn't determine XLEN from $misa (0x%x)" %
                         self.hart.misa)
 
-            if (misa_xlen != hart.xlen):
-                raise TestFailed("MISA reported XLEN of %d but we were expecting XLEN of %d\n" % (misa_xlen, hart.xlen))
+            if misa_xlen != hart.xlen:
+                raise TestFailed("MISA reported XLEN of %d but we were "\
+                        "expecting XLEN of %d\n" % (misa_xlen, hart.xlen))
 
             txt += ("%d" % misa_xlen)