aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/ndk/PATCH2
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2017-02-08 10:45:48 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-02-08 10:45:48 +0000
commit9826fbe38e2bc35fc6c680cc216dcb993b54d2ff (patch)
tree87b3a32b13c392939d66fa93105896f5df0736a6 /binary_search_tool/ndk/PATCH2
parentbaba90fd78c18585d22430dc95c748f96ad0c772 (diff)
parent271389dd3199539c4474c351942f4d4fa975b81b (diff)
downloadtoolchain-utils-9826fbe38e2bc35fc6c680cc216dcb993b54d2ff.tar.gz
Merge remote-tracking branch 'aosp/mirror-chromium-master' into initial_import am: 870a8df6fc am: 9c6fa5f9e5 am: c5804ce784
am: 271389dd31 Change-Id: I22e657bc86117da9a6a45329a67a21096736da03
Diffstat (limited to 'binary_search_tool/ndk/PATCH2')
-rw-r--r--binary_search_tool/ndk/PATCH234
1 files changed, 34 insertions, 0 deletions
diff --git a/binary_search_tool/ndk/PATCH2 b/binary_search_tool/ndk/PATCH2
new file mode 100644
index 00000000..9fcf45d0
--- /dev/null
+++ b/binary_search_tool/ndk/PATCH2
@@ -0,0 +1,34 @@
+From 960134fb87a194595f2a0a36290be7961e12b946 Mon Sep 17 00:00:00 2001
+From: Cassidy Burden <cburden@google.com>
+Date: Tue, 9 Aug 2016 09:46:27 -0700
+Subject: [PATCH] FOR BISECTION TOOL: Insert error
+
+Insert error into code that will cause crash. This is the "compiler
+error" that we will be triaging. We will be pretending the compiler
+mistakenly inserted a nullptr where it shouldn't have.
+
+This error causes the app to immediately crash upon starting. This makes
+it very easy to automatically test the app through adb. Not all compiler
+problems will be this easy to test, and may require manual testing from
+you (the user). See android/interactive_test.sh for an example on
+manual testing from the user.
+---
+ Teapot/app/src/main/jni/TeapotRenderer.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Teapot/app/src/main/jni/TeapotRenderer.cpp b/Teapot/app/src/main/jni/TeapotRenderer.cpp
+index 7cafdb3..75cadbf 100644
+--- a/Teapot/app/src/main/jni/TeapotRenderer.cpp
++++ b/Teapot/app/src/main/jni/TeapotRenderer.cpp
+@@ -58,7 +58,7 @@ void TeapotRenderer::Init() {
+ num_vertices_ = sizeof(teapotPositions) / sizeof(teapotPositions[0]) / 3;
+ int32_t stride = sizeof(TEAPOT_VERTEX);
+ int32_t index = 0;
+- TEAPOT_VERTEX* p = new TEAPOT_VERTEX[num_vertices_];
++ TEAPOT_VERTEX* p = nullptr; //new TEAPOT_VERTEX[num_vertices_];
+ for (int32_t i = 0; i < num_vertices_; ++i) {
+ p[i].pos[0] = teapotPositions[index];
+ p[i].pos[1] = teapotPositions[index + 1];
+--
+2.8.0.rc3.226.g39d4020
+