Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Add stub unit test for calltrace tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Dormann committed Sep 7, 2016
1 parent 1f58c98 commit 59c3946
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/test_certfuzz/tools/linux/test_calltrace.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
'''
Created on Jan 23, 2014
@organization: cert.org
'''
import unittest


class Test(unittest.TestCase):

def setUp(self):
pass

def tearDown(self):
pass

def testName(self):
pass

if __name__ == "__main__":
#import sys;sys.argv = ['', 'Test.testName']
unittest.main()

0 comments on commit 59c3946

Please sign in to comment.