You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2019/12/26 10:37:50 UTC

[ignite] branch master updated: IGNITE-12480 Add BinaryFieldExtractionSelfTest to the Binary Objects test suite - Fixes #7179.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8427f38  IGNITE-12480 Add BinaryFieldExtractionSelfTest to the Binary Objects test suite - Fixes #7179.
8427f38 is described below

commit 8427f381fc8be2325c3a3dfd267b046c2b97b133
Author: Denis Mekhanikov <dm...@gmail.com>
AuthorDate: Thu Dec 26 13:37:23 2019 +0300

    IGNITE-12480 Add BinaryFieldExtractionSelfTest to the Binary Objects test suite - Fixes #7179.
    
    Signed-off-by: Ilya Kasnacheev <il...@gmail.com>
---
 .../org/apache/ignite/testsuites/IgniteBinaryObjectsTestSuite.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsTestSuite.java b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsTestSuite.java
index 1fd50d5..05ea5b8 100644
--- a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsTestSuite.java
+++ b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteBinaryObjectsTestSuite.java
@@ -23,6 +23,7 @@ import org.apache.ignite.internal.binary.BinaryBasicNameMapperSelfTest;
 import org.apache.ignite.internal.binary.BinaryConfigurationConsistencySelfTest;
 import org.apache.ignite.internal.binary.BinaryConfigurationCustomSerializerSelfTest;
 import org.apache.ignite.internal.binary.BinaryEnumsSelfTest;
+import org.apache.ignite.internal.binary.BinaryFieldExtractionSelfTest;
 import org.apache.ignite.internal.binary.BinaryFieldsHeapSelfTest;
 import org.apache.ignite.internal.binary.BinaryFieldsOffheapSelfTest;
 import org.apache.ignite.internal.binary.BinaryFooterOffsetsHeapSelfTest;
@@ -97,7 +98,7 @@ import org.junit.runners.Suite;
     BinaryObjectBuilderDefaultMappersSelfTest.class,
     BinaryObjectBuilderSimpleNameLowerCaseMappersSelfTest.class,
     BinaryObjectBuilderAdditionalSelfTest.class,
-    //BinaryFieldExtractionSelfTest.class,
+    BinaryFieldExtractionSelfTest.class,
     BinaryFieldsHeapSelfTest.class,
     BinaryFieldsOffheapSelfTest.class,
     BinaryFooterOffsetsHeapSelfTest.class,