adding zlib and zlib-blocks tests
[python-delta-tar] / runtests.py
CommitLineData
be60ffd0 1#!/usr/bin/env python3
ae48acc8 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
1a985013
ERE
26from testing.test_deltatar import (DeltaTarTest, DeltaTar2Test,
27 DeltaTarStreamTest, DeltaTarGzipTest, DeltaTarGzipStreamTest,
28 DeltaTarGzipConcatTest, DeltaTarGzipAes128ConcatTest,
ac5e4184 29 DeltaTarGzipAes256ConcatTest,
f7ababc0 30 DeltaTarAes128ConcatTest, DeltaTarAes256ConcatTest
ac5e4184 31 )
ae48acc8
ERE
32
33if __name__ == "__main__":
6e812ad9 34 unittest.main()