1afa5fb64b
Going forward specific GMs can be added to the rendertest.txt in order to do a basic pass/fail run based on whether the GM can successfully complete without crashing. The output of the executable was also updated to print one test per line in order to make following its execution more readable. Bug: skia:12777 Change-Id: I98f6fa7af765130ddf68203d62c972659fd4e325 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/489617 Reviewed-by: Leon Scroggins <scroggo@google.com> Commit-Queue: Derek Sollenberger <djsollen@google.com>
17 lines
466 B
Bash
Executable File
17 lines
466 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Copyright 2018 Google Inc.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -e
|
|
|
|
# Change to the root and remove previously added build assets from the source
|
|
# tree of the SKQP app.
|
|
cd "$(dirname "$0")/../.."
|
|
cd platform_tools/android/apps
|
|
git clean -fxd skqp/build \
|
|
skqp/src/main/assets/resources \
|
|
skqp/src/main/libs \
|
|
.gradle build viewer/build
|