summaryrefslogtreecommitdiff
path: root/test/test-open-iscsi.py
blob: 2b8f2b97f2d98065745c2bcba1eb6c88ea57109e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
"""
Unit tests for open-iscsi, using the unittest built-in package
"""

import sys
import unittest
import os
import time
from harness import util
#from harness import tests
#from tests import TestRegression

__version__ = '1.0'


if __name__ == '__main__':
    # do our own hackery first, to get access to verbosity, debug, etc,
    # as well as add our own command-line options
    util.setup_testProgram_overrides(__version__, 'test-open-iscsi.py')
    # now run the tests
    unittest.main(module = 'harness.tests')