bug: 163163467
test: ./build_all_unit_tests.sh
./build_and_run_all_unit_tests.sh
Merge from: go/wvgerrit/116524
Change-Id: I5eaf5ed34b46445d23530ca0edca94bfaeb3abaf
10 lines
270 B
Bash
Executable File
10 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# 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 "$@"
|