You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by dk...@apache.org on 2020/05/21 14:09:06 UTC

[avro] branch master updated: AVRO-2523: Perf's usage doesn't show the option for specific record test

This is an automated email from the ASF dual-hosted git repository.

dkulp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new b9bfc07  AVRO-2523: Perf's usage doesn't show the option for specific record test
b9bfc07 is described below

commit b9bfc07c43140ef0aa58340430ab3c4909337f21
Author: Kengo Seki <se...@apache.org>
AuthorDate: Sun Aug 25 22:21:30 2019 +0900

    AVRO-2523: Perf's usage doesn't show the option for specific record test
---
 lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java b/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java
index 472dae6..f5cdf28 100644
--- a/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java
+++ b/lang/java/ipc/src/test/java/org/apache/avro/io/Perf.java
@@ -126,6 +126,7 @@ public class Perf {
     new TestDescriptor(GenericOneTimeDecoderUse.class, "-Gotd").add(GENERIC_ONETIME);
     new TestDescriptor(GenericOneTimeReaderUse.class, "-Gotr").add(GENERIC_ONETIME);
     new TestDescriptor(GenericOneTimeUse.class, "-Got").add(GENERIC_ONETIME);
+    BATCHES.put("-specific", SPECIFIC);
     new TestDescriptor(FooBarSpecificRecordTest.class, "-Sf").add(SPECIFIC);
     BATCHES.put("-reflect", REFLECT);
     new TestDescriptor(ReflectRecordTest.class, "-REFr").add(REFLECT);