camera.HAL3*: Do not fail the test if WaitUntilIdle() failed

This is a quick to stop the tragic falures on camera.HAL3* tests
https://tastboard.corp.google.com/test?testname=camera.HAL3

The issue was uncovered by the fix of error propagation in
https://crrev.com/c/2409612.

BUG=b:169122360
TEST=tast run <dut> camera.HAL3Module

Change-Id: Ied7fee814a5c9578281a8d00d76c2590203b4328
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/tast-tests/+/2426204
Reviewed-by: Jun Mukai <mukai@chromium.org>
Tested-by: Shik Chen <shik@chromium.org>
1 file changed
tree: e477bad816dba340421c89648b9aef6ab5af432c
  1. android/
  2. helpers/
  3. src/
  4. tools/
  5. vars/
  6. .gitignore
  7. LICENSE
  8. OWNERS
  9. PRESUBMIT.cfg
  10. PRESUBMIT.py
  11. README.md
README.md

Tast (tests)

This repository contains integration tests that are run by Tast.

Directory structure

  • helpers/ - Source code for binaries executed by tests.
    • local/ - Helpers for local tests that are compiled and installed to /usr/local/libexec/tast/helpers/local/cros by the tast-local-helpers-cros package.
  • src/chromiumos/tast/
    • local/ - Code related to local (i.e. on-device or “client”) tests.
      • bundles/ - Local test bundles.
        • cros/ - The “cros” local test bundle, containing standard Chrome OS tests. Tests are packaged by category.
      • ... - Packages used only by local tests.
    • remote/ - Code related to remote (i.e. off-device or “server”) tests.
      • bundles/ - Remote test bundles.
        • cros/ - The “cros” remote test bundle, containing standard Chrome OS tests. Tests are packaged by category.
      • ... - Packages used only by remote tests.

Shared code, the main tast executable, the local_test_runner and remote_test_runner executables responsible for running bundles, and documentation are located in the tast repository.

GoDoc