mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
a62858f89d
And fix a nit in the existing tests to make it pass. BUG=b:219965702 TEST=presubmit Change-Id: I65fb98b04d7042755930dd34913f679fa129c88c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3594248 Reviewed-by: Maciek Swiech <drmasquatch@google.com> Tested-by: kokoro <noreply+kokoro@google.com>
48 lines
1.3 KiB
Python
Executable file
48 lines
1.3 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
# Copyright 2022 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import doctest
|
|
import importlib
|
|
from pathlib import Path
|
|
import sys
|
|
from impl.common import CROSVM_ROOT, run_main, cmd, chdir, parallel, find_scripts
|
|
from impl.check_code_hygiene import has_crlf_line_endings
|
|
|
|
mypy = cmd("mypy --pretty --color-output").env("MYPY_FORCE_COLOR", "1").env("MYPYPATH", "tools")
|
|
|
|
|
|
def check_python():
|
|
print("Running python doctests")
|
|
for source in Path("tools/impl").glob("*.py"):
|
|
lib = importlib.import_module(f"impl.{source.stem}")
|
|
result = doctest.testmod(lib, optionflags=doctest.ELLIPSIS)
|
|
if result.failed:
|
|
sys.exit(1)
|
|
print("Type-checking python")
|
|
parallel(
|
|
mypy("tools/impl"),
|
|
*mypy.foreach(find_scripts(Path("tools"), "/usr/bin/env python3")),
|
|
).fg()
|
|
|
|
|
|
def check_crlf_line_endings():
|
|
crlf_endings = has_crlf_line_endings()
|
|
if crlf_endings:
|
|
print("Error: Following files have crlf(dos) line encodings")
|
|
print(*crlf_endings)
|
|
sys.exit(-1)
|
|
|
|
|
|
def main():
|
|
chdir(CROSVM_ROOT)
|
|
|
|
check_python()
|
|
check_crlf_line_endings()
|
|
cmd("./tools/fmt --check").fg()
|
|
cmd("./tools/clippy").fg()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_main(main)
|