aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexis Roda <alexis.roda.villalonga@gmail.com>2019-08-07 02:08:27 +0200
committerAlexis Roda <alexis.roda.villalonga@gmail.com>2019-08-07 02:08:27 +0200
commitfd9f4e10bf775303d19273feaf327b4f5c52a74a (patch)
tree033d7fb7013ac616afb4c5c22ea67e7c8a5b597e /tests
parent7ed68a50b1379a8d8265ff76292ed0620d2a45e5 (diff)
downloadz80count-fd9f4e10bf775303d19273feaf327b4f5c52a74a.tar.gz
z80count-fd9f4e10bf775303d19273feaf327b4f5c52a74a.zip
Fix regex for labels.
SDCC also allows $ and dots in the labels.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_z80count.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_z80count.py b/tests/test_z80count.py
index c816359..85a9084 100644
--- a/tests/test_z80count.py
+++ b/tests/test_z80count.py
@@ -9,6 +9,8 @@ from z80count.z80count import z80count
@pytest.mark.parametrize("line,expected", (
("PLY_InterruptionOn: call PLY_Init",
"PLY_InterruptionOn: call PLY_Init ; [17]\n"),
+ ("$PLY_Interruption.On: call PLY_Init",
+ "$PLY_Interruption.On: call PLY_Init ; [17]\n"),
("PLY_ReplayFrequency:\tld de,0",
"PLY_ReplayFrequency:\tld de,0 ; [10]\n"),