summaryrefslogtreecommitdiff
path: root/test/instrumented/boxes.patch
diff options
context:
space:
mode:
Diffstat (limited to 'test/instrumented/boxes.patch')
-rw-r--r--test/instrumented/boxes.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/instrumented/boxes.patch b/test/instrumented/boxes.patch
new file mode 100644
index 0000000000..11c5b37aa8
--- /dev/null
+++ b/test/instrumented/boxes.patch
@@ -0,0 +1,29 @@
+9a10,11
+> /* INSTRUMENTED VERSION */
+>
+50a53,61
+> public static int booleanBoxCount = 0;
+> public static int characterBoxCount = 0;
+> public static int byteBoxCount = 0;
+> public static int shortBoxCount = 0;
+> public static int integerBoxCount = 0;
+> public static int longBoxCount = 0;
+> public static int floatBoxCount = 0;
+> public static int doubleBoxCount = 0;
+>
+51a63
+> booleanBoxCount++;
+55a68
+> characterBoxCount++;
+59a73
+> byteBoxCount++;
+63a78
+> shortBoxCount++;
+67a83
+> integerBoxCount++;
+71a88
+> longBoxCount++;
+75a93
+> floatBoxCount++;
+79a98
+> doubleBoxCount++;