summaryrefslogtreecommitdiff
path: root/xnt/tests/compilercollectiontests.py
blob: 3bed441b528ebf63dbf18cdf9cf2a90b488f3b7f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/usr/bin/env python
"""Test Common Compiler Collection"""

#   Xnt -- A Wrapper Build Tool
#   Copyright (C) 2013  Kenny Ballou

#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.

#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.

#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.

from xnt.tests import assert_basic_assumptions
from xnt.tasks.build.cc import __gcc__
from xnt.tasks.build.cc import __gpp__
from xnt.tasks.build.cc import __nvcc__
from xnt.tasks.build.cc import __javac__
import sys
if sys.version_info[0] == 2 and sys.version_info[1] == 6:
    import unittest2 as unittest
else:
    import unittest

# pylint: disable=R0904
class GccTests(unittest.TestCase):
    """Test GCC"""

    def test_gcc(self):
        """Test Default GCC"""
        result = __gcc__("hello.c")
        assert_basic_assumptions(self, result)
        self.assertIn("infile", result[0][1])
        self.assertIn('flags', result[0][1])

    def test_gcc_with_output(self):
        """Test GCC with output"""
        result = __gcc__("hello.c", output="hello")
        assert_basic_assumptions(self, result)
        self.assertIn("infile", result[0][1])
        self.assertIn("outfile", result[0][1])
        self.assertIn('flags', result[0][1])

# pylint: disable=R0904
class GppTests(unittest.TestCase):
    """Test G++ (C++ GCC)"""

    def test_gpp(self):
        """Test Default G++"""
        result = __gpp__("hello.cpp")
        assert_basic_assumptions(self, result)
        self.assertIn("infile", result[0][1])
        self.assertIn('flags', result[0][1])

    def test_gpp_with_output(self):
        """Test G++ with output"""
        result = __gpp__("hello.cpp", output="hello")
        assert_basic_assumptions(self, result)
        self.assertIn("infile", result[0][1])
        self.assertIn("outfile", result[0][1])
        self.assertIn('flags', result[0][1])

# pylint: disable=R0904
class NvccTests(unittest.TestCase):
    """Test NVCC"""

    def test_nvcc(self):
        """Test Default NVCC"""
        result = __nvcc__("hello.cu")
        assert_basic_assumptions(self, result)
        self.assertIn("infile", result[0][1])
        self.assertIn('flags', result[0][1])

    def test_nvcc_with_output(self):
        """Test Named Output NVCC"""
        result = __nvcc__("hello.cu", output="hello")
        assert_basic_assumptions(self, result)
        self.assertIn("infile", result[0][1])
        self.assertIn("outfile", result[0][1])
        self.assertIn('flags', result[0][1])

# pylint: disable=R0904
class JavacTests(unittest.TestCase):
    """Test Javac"""

    def test_javac(self):
        """Test Default Javac"""
        result = __javac__("HelloWorld.java")
        assert_basic_assumptions(self, result)
        self.assertIn("sourcefiles", result[0][1])
        self.assertIn('flags', result[0][1])

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