Bug 1292463 - Rename compilechecks.configure and test_header_checks.py. r=chmanchester

to, respectively, compile-checks.configure and test_compile_checks.py.


--HG--
rename : build/moz.configure/compilechecks.configure => build/moz.configure/compile-checks.configure
This commit is contained in:
Mike Hommey 2016-08-09 08:25:35 +09:00
Родитель cc883a2e7a
Коммит 7a80b4e7ee
4 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -764,7 +764,7 @@ host_cxx_compiler = compiler('C++', host, c_compiler=host_c_compiler,
other_compiler=cxx_compiler,
other_c_compiler=c_compiler)
include('compilechecks.configure')
include('compile-checks.configure')
@depends(c_compiler)
def default_debug_flags(compiler_info):

Просмотреть файл

@ -38,8 +38,8 @@ PYTHON_UNIT_TESTS += [
'mozbuild/mozbuild/test/backend/test_visualstudio.py',
'mozbuild/mozbuild/test/compilation/test_warnings.py',
'mozbuild/mozbuild/test/configure/test_checks_configure.py',
'mozbuild/mozbuild/test/configure/test_compile_checks.py',
'mozbuild/mozbuild/test/configure/test_configure.py',
'mozbuild/mozbuild/test/configure/test_header_checks.py',
'mozbuild/mozbuild/test/configure/test_moz_configure.py',
'mozbuild/mozbuild/test/configure/test_options.py',
'mozbuild/mozbuild/test/configure/test_toolchain_configure.py',

Просмотреть файл

@ -82,7 +82,7 @@ class TestHeaderChecks(unittest.TestCase):
sandbox.include_file(os.path.join(base_dir, 'util.configure'))
sandbox.include_file(os.path.join(base_dir, 'checks.configure'))
exec_(mock_compiler_defs, sandbox)
sandbox.include_file(os.path.join(base_dir, 'compilechecks.configure'))
sandbox.include_file(os.path.join(base_dir, 'compile-checks.configure'))
status = 0
try: