Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 847ba786 authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Allow run-ravenwood-tests.sh to use atest-dev

See the Test: line

Test: ATEST=atest-dev ravenwood/run-ravenwood-tests.sh
Bug: 292141694
Change-Id: I18851d99f175578ffec78873599e842f72568c57
parent 9f26dd3e
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -20,5 +20,9 @@ all_tests="hoststubgentest tiny-framework-dump-test hoststubgen-invoke-test"
# "echo" is to remove the newlines
all_tests="$all_tests $(echo $(${0%/*}/list-ravenwood-tests.sh) )"

echo "Running tests: $all_tests"
atest $all_tests
run() {
    echo "Running: $*"
    "${@}"
}

run ${ATEST:-atest} $all_tests