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