You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2019/08/25 17:50:27 UTC

[incubator-datasketches-memory] branch master updated: Add DISCLAIMER-WIP to rat-plugin excludes.

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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-memory.git


The following commit(s) were added to refs/heads/master by this push:
     new fd1adc0  Add DISCLAIMER-WIP to rat-plugin excludes.
fd1adc0 is described below

commit fd1adc041f5a75d0de73d5ca048d0cc3077a5a39
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Sun Aug 25 10:47:52 2019 -0700

    Add DISCLAIMER-WIP to rat-plugin excludes.
    
    Remove platform endian sensitive test.
---
 pom.xml                                                           | 2 +-
 .../java/org/apache/datasketches/memory/WritableMemoryTest.java   | 8 --------
 2 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5036cb3..1dd6ffc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -302,7 +302,7 @@ under the License.
               <exclude>**/test/resources/**/*.txt</exclude>
               <exclude>LICENSE</exclude>
               <exclude>NOTICE</exclude>
-              <exclude>DISCLAIMER</exclude>
+              <exclude>DISCLAIMER-WIP</exclude>
             </excludes>
           </configuration>
         </plugin>
diff --git a/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java b/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java
index 7cefd14..2020dda 100644
--- a/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java
+++ b/src/test/java/org/apache/datasketches/memory/WritableMemoryTest.java
@@ -40,14 +40,6 @@ public class WritableMemoryTest {
   }
 
   @Test
-  public void wrapBigEndian2() {
-    ByteBuffer bb = ByteBuffer.allocate(64);
-    WritableBuffer wbuf = WritableBuffer.wrap(bb);
-    assertFalse(wbuf.getTypeByteOrder() == BaseState.nativeByteOrder);
-    assertEquals(wbuf.getTypeByteOrder(), ByteOrder.BIG_ENDIAN);
-  }
-
-  @Test
   public void wrapBigEndianAsLittle() {
     ByteBuffer bb = ByteBuffer.allocate(64);
     bb.putChar(0, (char)1); //as BE


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org