tast-tests: increase timeout in CreateVault

Increase timeout in CreateVault to reduce flakiness.
session.RetrieveActiveSessions is failing due to slow cryptohome
creation.

Merge reason: Fix
https://ci.chromium.org/p/chromium/builders/try-m84/chromeos-amd64-generic-rel
failing due to CreateVault timeouts for CL:
https://chromium-review.googlesource.com/c/chromium/src/+/2358835

BUG=chromium:1116379
TEST=None

Change-Id: Ie8d57b388c0e298e2aefccc81c604d82a799d3ff
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/tast-tests/+/2352981
Reviewed-by: Oleh Lamzin <lamzin@google.com>
Reviewed-by: John L Chen <zuan@chromium.org>
Tested-by: Victor-Gabriel Savu <vsavu@google.com>
Commit-Queue: Victor-Gabriel Savu <vsavu@google.com>
(cherry picked from commit 773137663585acaaa79450aadc7f016f141a5a39)
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/tast-tests/+/2363181
Commit-Queue: Jorge Lucangeli Obes <jorgelo@chromium.org>
Tested-by: Jorge Lucangeli Obes <jorgelo@chromium.org>
1 file changed
tree: fdd1a776a2c1bc1e057b4c55399eac7c85448b24
  1. android/
  2. helpers/
  3. src/
  4. tools/
  5. .gitignore
  6. LICENSE
  7. OWNERS
  8. PRESUBMIT.cfg
  9. PRESUBMIT.py
  10. 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