From 82a7cb2cb2d6ddd6d921dcdd648e72dc766386dd Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 22 Dec 2020 23:09:09 +0000 Subject: [PATCH] Image format --- tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests.py b/tests.py index 57527e549..d637642b4 100644 --- a/tests.py +++ b/tests.py @@ -2844,15 +2844,15 @@ def testFunctions(): for name, properties in functionProperties.items(): if not properties['calls']: continue - for calledFunc in properties['calls']: - callGraphStr += ' "' + name + '" -> "' + calledFunc + '";\n' + # for calledFunc in properties['calls']: + # callGraphStr += ' "' + name + '" -> "' + calledFunc + '";\n' callGraphStr += '\n}\n' with open('epicyon.dot', 'w+') as fp: fp.write(callGraphStr) print('Call graph saved to epicyon.dot') print('Convert to image with: ' + - 'dot -T epicyon.dot -o epicyon_diagram.jpg') + 'dot -Tjpg epicyon.dot -o epicyon_diagram.jpg') def runAllTests():