Merge "libfs_avb: updating run_tests.sh" am: f452a42db2 am: 9520bbf5de

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1942373

Change-Id: Ied32bc655a5105b99bc91d185489add5068ae105
This commit is contained in:
Bowgo Tsai 2022-01-11 04:40:40 +00:00 committed by Automerger Merge Worker
commit c3984d5e77

View file

@ -1,8 +1,13 @@
#!/bin/sh
#
# Run host tests
atest libfs_avb_test # Tests public libfs_avb APIs.
atest libfs_avb_internal_test # Tests libfs_avb private APIs.
atest --host libfs_avb_test # Tests public libfs_avb APIs.
# Tests libfs_avb private APIs.
# The tests need more time to finish, so increase the timeout to 5 mins.
# The default timeout is only 60 seconds.
atest --host libfs_avb_internal_test -- --test-arg \
com.android.tradefed.testtype.HostGTest:native-test-timeout:5m
# Run device tests
atest libfs_avb_device_test # Test public libfs_avb APIs on a device.