diff options
| -rwxr-xr-x | tools/buildbot-sync.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/buildbot-sync.sh b/tools/buildbot-sync.sh index de83c502cd..8bf6885766 100755 --- a/tools/buildbot-sync.sh +++ b/tools/buildbot-sync.sh @@ -127,3 +127,6 @@ echo -e "${green}$ld_generated_config_files${nc}" echo -e "${green}Syncing data directory...${nc}" adb shell mkdir -p "$ART_TEST_CHROOT/data" adb push "$ANDROID_PRODUCT_OUT/data" "$ART_TEST_CHROOT/" + +# Create the framework directory if it doesn't exist. Some gtests need it. +adb shell mkdir -p "$ART_TEST_CHROOT/system/framework" |