[ Merge of http://go/wvgerrit/165139 ] Changed the specified shell program used to execute our team's Android scripts to bash. Bug: 266891333 Test: ./build_all_unit_tests.sh Change-Id: Id6fc8e4db10a71e9f17fc48a52a4883331e908d3
10 lines
272 B
Bash
Executable File
10 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build the tests using build_all_unit_tests.sh
|
|
cd $ANDROID_BUILD_TOP/vendor/widevine/libwvdrmengine
|
|
./build_all_unit_tests.sh "$@"
|
|
|
|
# Run the tests using run_all_unit_tests.sh
|
|
cd $ANDROID_BUILD_TOP/vendor/widevine/libwvdrmengine
|
|
./run_all_unit_tests.sh "$@"
|