improving the filesplitter, allowing to split at specified offsets. this is useful...
[python-delta-tar] / runtests.py
CommitLineData
ae48acc8
ERE
1#!/usr/bin/env python
2
866c42e6
DGM
3# Copyright (C) 2013 Intra2net AG
4#
494b38aa
DGM
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU Lesser General Public License as published
7# by the Free Software Foundation; either version 3 of the License, or
866c42e6
DGM
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
494b38aa 13# GNU Lesser General Public License for more details.
866c42e6
DGM
14#
15# You should have received a copy of the GNU General Public License
494b38aa
DGM
16# along with this program. If not, see
17# <http://www.gnu.org/licenses/lgpl-3.0.html>
866c42e6
DGM
18
19
ae48acc8
ERE
20import unittest
21
8ab92b45 22from testing.test_multivol import MultivolGnuFormatTest, MultivolPaxFormatTest
5fdff89f 23from testing.test_concat_compress import ConcatCompressTest
0112ba0d 24from testing.test_rescue_tar import RescueTarTest
6e812ad9 25from testing.test_encryption import EncryptionTest
df86af81 26from testing.test_deltatar import DeltaTarTest
ae48acc8
ERE
27
28if __name__ == "__main__":
6e812ad9 29 unittest.main()