aboutsummaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-10-03 04:09:00 +0200
committerSven Gothel <[email protected]>2014-10-03 04:09:00 +0200
commitf7c2c27234e58371ffbb2b3ec44a0f3e8a373340 (patch)
treef7032a5a16fb96d7738f452fa7dfc095bb268198 /src/junit/com/jogamp
parent89831e61dc68b29ceb6c1cc579f6a7bb17a46d70 (diff)
TestByteBufferInputStream: Reduce FLUSH_SOFT load
Diffstat (limited to 'src/junit/com/jogamp')
-rw-r--r--src/junit/com/jogamp/common/nio/TestByteBufferInputStream.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/junit/com/jogamp/common/nio/TestByteBufferInputStream.java b/src/junit/com/jogamp/common/nio/TestByteBufferInputStream.java
index f325b30..408b417 100644
--- a/src/junit/com/jogamp/common/nio/TestByteBufferInputStream.java
+++ b/src/junit/com/jogamp/common/nio/TestByteBufferInputStream.java
@@ -143,20 +143,20 @@ public class TestByteBufferInputStream extends JunitTracer {
static enum SrcType { COPY, MMAP1, MMAP2_NONE, MMAP2_SOFT, MMAP2_HARD };
@Test
- public void test11MMapFlushNone() throws IOException {
+ public void test11MMap1GiBFlushNone() throws IOException {
testCopyIntSize1Impl2(0, SrcType.MMAP2_NONE, 0, fileOneGiB, oneGiB);
- testCopyIntSize1Impl2(0, SrcType.MMAP2_NONE, 0, fileTwoPlusGiB, twoPlusGiB);
+ // testCopyIntSize1Impl2(0, SrcType.MMAP2_NONE, 0, fileTwoPlusGiB, twoPlusGiB);
}
@Test
- public void test12MMapFlushSoft() throws IOException {
+ public void test12MMap1GiBFlushSoft() throws IOException {
testCopyIntSize1Impl2(0, SrcType.MMAP2_SOFT, 0, fileOneGiB, oneGiB);
- testCopyIntSize1Impl2(0, SrcType.MMAP2_SOFT, 0, fileTwoPlusGiB, twoPlusGiB);
+ // testCopyIntSize1Impl2(0, SrcType.MMAP2_SOFT, 0, fileTwoPlusGiB, twoPlusGiB);
}
@Test
- public void test13MMapFlushHard() throws IOException {
- testCopyIntSize1Impl2(0, SrcType.MMAP2_HARD, 0, fileOneGiB, oneGiB);
+ public void test13MMap2GiBFlushHard() throws IOException {
+ // testCopyIntSize1Impl2(0, SrcType.MMAP2_HARD, 0, fileOneGiB, oneGiB);
testCopyIntSize1Impl2(0, SrcType.MMAP2_HARD, 0, fileTwoPlusGiB, twoPlusGiB);
}