blob: 2a2bd931d2e4da3285de8b9f49d683d5005a339c [file] [log] [blame]
#!python
# Copyright 2012 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This unittest simply builds the build_all target."""
import os.path
import sys
_SYZYGY_DIR = os.path.abspath(os.path.dirname(__file__) + '/..')
_SCRIPT_DIR = os.path.join(_SYZYGY_DIR, 'py')
_SRC_DIR = os.path.abspath(os.path.join(_SYZYGY_DIR, '..'))
if _SCRIPT_DIR not in sys.path:
sys.path.insert(0, _SCRIPT_DIR)
import test_utils.testing as testing # pylint: disable=F0401
import test_utils.syzygy as syzygy # pylint: disable=F0401
class NinjaBuildAll(testing.Test):
"""A test that checks to see if the 'build_all' target succeeds via Ninja."""
def __init__(self):
testing.Test.__init__(
self, syzygy.NINJA_BUILD_DIR, syzygy.SYZYGY_TARGET, True)
def _Run(self, configuration):
testing.RunCommand(
['ninja', '-C', 'out/' + configuration, syzygy.SYZYGY_TARGET],
cwd=_SRC_DIR)
return True
def _Touch(self, configuration):
self._Run(configuration)
def MakeTest():
return NinjaBuildAll()
if __name__ == '__main__':
sys.exit(MakeTest().Main()) # pylint: disable=E1101