summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smplock01/smplock01.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/smptests/smplock01/smplock01.py')
-rw-r--r--testsuites/smptests/smplock01/smplock01.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/smptests/smplock01/smplock01.py b/testsuites/smptests/smplock01/smplock01.py
index f8189f32ff..4a4f794620 100644
--- a/testsuites/smptests/smplock01/smplock01.py
+++ b/testsuites/smptests/smplock01/smplock01.py
@@ -23,10 +23,10 @@ plt.ylabel('Operation Count')
y = map(xmlNode.getContent, ctx.xpathEval('/SMPLock01/GlobalTicketLockWithLocalCounter/SumOfLocalCounter'))
x = range(1, len(y) + 1)
-plt.plot(x, y, label = 'Global Ticket Lock')
+plt.plot(x, y, label = 'Global Ticket Lock', marker = 'o')
y = map(xmlNode.getContent, ctx.xpathEval('/SMPLock01/GlobalMCSLockWithLocalCounter/SumOfLocalCounter'))
-plt.plot(x, y, label = 'Global MCS Lock')
+plt.plot(x, y, label = 'Global MCS Lock', marker = 'o')
plt.legend(loc = 'best')
plt.show()