summaryrefslogtreecommitdiff
path: root/rdiff-backup/testing/testall.py
blob: 53894089f2ff17428a4ca0a093158e52460b08ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import unittest

"""This probably doesn't work any more - just run the tests manually."""

from connectiontest import *
#from destructive-steppingtest import *
from dstest import *
from highleveltest import *
from incrementtest import *
from iterfiletest import *
from lazytest import *
from rdifftest import *
from regressiontest import *
from restoretest import *
from rlisttest import *
from rorpitertest import *
from rpathtest import *
#from finaltest import *
from statictest import *
from timetest import *
from filelisttest import *
from setconnectionstest import *

if __name__ == "__main__":
	unittest.main()