Fixed encryption pad treatment using random pad
[python-delta-tar] / runtests.py
CommitLineData
ae48acc8
ERE
1#!/usr/bin/env python
2
866c42e6
DGM
3# Copyright (C) 2013 Intra2net AG
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
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
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18
ae48acc8
ERE
19import unittest
20
8ab92b45 21from testing.test_multivol import MultivolGnuFormatTest, MultivolPaxFormatTest
5fdff89f 22from testing.test_concat_compress import ConcatCompressTest
0112ba0d 23from testing.test_rescue_tar import RescueTarTest
6e812ad9 24from testing.test_encryption import EncryptionTest
ae48acc8
ERE
25
26if __name__ == "__main__":
6e812ad9 27 unittest.main()