c2c7cd3fec728ef0a310135e03aa3a5c41c54fa5
[archive/20170607/tools/tic-core.git] / test / suite.py
1 #!/usr/bin/python
2 # Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
3 #
4 # Contact: 
5 # @author Chulwoo Shin <cw1.shin@samsung.com>
6
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Contributors:
20 # - S-Core Co., Ltd
21
22 import sys
23 import unittest
24 from test import test_dependency
25 from test import test_repodata
26
27
28
29 #if __name__ == "__main__":
30 # set test-suite
31 suite = unittest.TestSuite()
32 suite.addTests(test_repodata.suite())
33 suite.addTests(test_dependency.suite())
34
35 # run test-suite
36 result = unittest.TextTestRunner(verbosity=2).run(suite)
37 sys.exit(not result.wasSuccessful())