Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GlasgowEmbedded/glasgow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fd1b3bbfa7c8
Choose a base ref
...
head repository: GlasgowEmbedded/glasgow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1e0ae593ec6a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 5, 2020

  1. Copy the full SHA
    1e0ae59 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 software/glasgow/applet/interface/jtag_probe/__init__.py
6 changes: 3 additions & 3 deletions software/glasgow/applet/interface/jtag_probe/__init__.py
Original file line number Diff line number Diff line change
@@ -1113,12 +1113,12 @@ def test_ir_1tap_0start(self):
def test_ir_1tap_1start(self):
ir = bits("0001")
self.assertEqual(self.iface.interrogate_ir(ir, 1),
[(0, 4)])
[4])

def test_ir_1tap_2start(self):
ir = bits("0101")
self.assertEqual(self.iface.interrogate_ir(ir, 1),
[(0, 4)])
[4])

def test_ir_2tap_1start(self):
ir = bits("0001")
@@ -1128,7 +1128,7 @@ def test_ir_2tap_1start(self):
def test_ir_2tap_2start(self):
ir = bits("01001")
self.assertEqual(self.iface.interrogate_ir(ir, 2),
[(0, 3), (3, 2)])
[3, 2])


class JTAGProbeAppletTestCase(GlasgowAppletTestCase, applet=JTAGProbeApplet):