summaryrefslogtreecommitdiff
path: root/test/tools/test_configure.py
blob: c4e65192c9b3d1426a2a404bae4ff3c93021c43d (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
import sys
import os
import unittest
import subprocess


class ConfigureTests(unittest.TestCase):
  def setUp(self):
    self.working_dir = os.path.abspath(
      os.path.join(
        os.path.dirname(__file__),
        '..', '..'
      )
    )

  def test_ninja(self):
    subprocess.check_call(
      './configure --ninja',
      cwd=self.working_dir,
      shell=True,
      stdout=subprocess.PIPE,
      stderr=subprocess.PIPE
    )


if (__name__ == '__main__' and
    sys.platform in ['linux', 'linux2', 'darwin', 'cygwin']):

  unittest.main()