app/test: fix memzone test
authorIntel <intel.com>
Wed, 18 Sep 2013 10:00:00 +0000 (12:00 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 9 Oct 2013 14:16:15 +0000 (16:16 +0200)
Signed-off-by: Intel
app/test/test_memzone.c

index 79e5231..294c0db 100644 (file)
@@ -296,7 +296,7 @@ test_memzone_reserve_max(void)
                        /* check if the memzone is in our memseg and subtract length */
                        if ((config->mem_config->memzone[memzone_idx].addr >=
                                        ms[memseg_idx].addr) &&
-                                       (config->mem_config->memzone[memzone_idx].addr <=
+                                       (config->mem_config->memzone[memzone_idx].addr <
                                        (RTE_PTR_ADD(ms[memseg_idx].addr, ms[memseg_idx].len)))) {
                                /* since the zones can now be aligned and occasionally skip
                                 * some space, we should calculate the length based on
@@ -389,7 +389,7 @@ test_memzone_reserve_max_aligned(void)
                        /* check if the memzone is in our memseg and subtract length */
                        if ((config->mem_config->memzone[memzone_idx].addr >=
                                        ms[memseg_idx].addr) &&
-                                       (config->mem_config->memzone[memzone_idx].addr <=
+                                       (config->mem_config->memzone[memzone_idx].addr <
                                        (RTE_PTR_ADD(ms[memseg_idx].addr, ms[memseg_idx].len)))) {
                                /* since the zones can now be aligned and occasionally skip
                                 * some space, we should calculate the length based on