Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/headers/src/util/   (Fast Lexical Analyzer Version 2.6©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quellcode-Bibliothek test_wait.py   Sprache: unbekannt

 
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.

import mozunit


def test_wait_while_running(runner):
    """Wait for the process while it is running"""
    runner.start()
    returncode = runner.wait(1)

    assert runner.is_running()
    assert returncode is None
    assert runner.returncode == returncode
    assert runner.process_handler is not None


def test_wait_after_process_finished(runner):
    """Bug 965714: wait() after stop should not raise an error"""
    runner.start()
    runner.process_handler.kill()

    returncode = runner.wait(1)

    assert returncode not in [None0]
    assert runner.process_handler is not None


if __name__ == "__main__":
    mozunit.main()

Messung V0.5 in Prozent
C=95 H=90 G=92

[0.21QuellennavigatorsProjekt 2026-06-05]