This commit is contained in:
parent
c450a9d4eb
commit
076f719286
|
|
@ -22,6 +22,9 @@ IF "%cd%"=="T:\src" (
|
||||||
)
|
)
|
||||||
endlocal
|
endlocal
|
||||||
|
|
||||||
|
@rem Info on disk usage
|
||||||
|
dir t:\
|
||||||
|
|
||||||
@rem enter repo root
|
@rem enter repo root
|
||||||
cd /d %~dp0\..\..\..
|
cd /d %~dp0\..\..\..
|
||||||
|
|
||||||
|
|
@ -48,4 +51,7 @@ set RUNTESTS_EXITCODE=%errorlevel%
|
||||||
@rem show ccache stats
|
@rem show ccache stats
|
||||||
ccache --show-stats
|
ccache --show-stats
|
||||||
|
|
||||||
|
@rem Info on disk usage after test
|
||||||
|
dir t:\
|
||||||
|
|
||||||
exit /b %RUNTESTS_EXITCODE%
|
exit /b %RUNTESTS_EXITCODE%
|
||||||
|
|
|
||||||
|
|
@ -416,17 +416,18 @@ def _create_portability_test_jobs(
|
||||||
# TODO(jtattermusch): The C tests with exactly the same config are already running as part of the
|
# TODO(jtattermusch): The C tests with exactly the same config are already running as part of the
|
||||||
# basictests_c suite (so we force --build_only to avoid running them twice).
|
# basictests_c suite (so we force --build_only to avoid running them twice).
|
||||||
# The C++ tests aren't all passing, so also force --build_only.
|
# The C++ tests aren't all passing, so also force --build_only.
|
||||||
test_jobs += _generate_jobs(
|
# NOTE(veblush): This is not neded as default=cmake_ninja_vs2019
|
||||||
languages=["c", "c++"],
|
# test_jobs += _generate_jobs(
|
||||||
configs=["dbg"],
|
# languages=["c", "c++"],
|
||||||
platforms=["windows"],
|
# configs=["dbg"],
|
||||||
arch="x64",
|
# platforms=["windows"],
|
||||||
compiler="cmake_ninja_vs2019",
|
# arch="x64",
|
||||||
labels=["portability", "corelang"],
|
# compiler="cmake_ninja_vs2019",
|
||||||
extra_args=extra_args + ["--build_only"],
|
# labels=["portability", "corelang"],
|
||||||
inner_jobs=inner_jobs,
|
# extra_args=extra_args + ["--build_only"],
|
||||||
timeout_seconds=_CPP_RUNTESTS_TIMEOUT,
|
# inner_jobs=inner_jobs,
|
||||||
)
|
# timeout_seconds=_CPP_RUNTESTS_TIMEOUT,
|
||||||
|
# )
|
||||||
|
|
||||||
# C and C++ with no-exceptions on Linux
|
# C and C++ with no-exceptions on Linux
|
||||||
test_jobs += _generate_jobs(
|
test_jobs += _generate_jobs(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue