automatic DPDK test reports
 help / color / mirror / Atom feed
* |SUCCESS| pw122075 [PATCH] Memory Allocation: Adding a new UT for fb_array
       [not found] <1673615567-20873-2-git-send-email-vipinp@vmware.com>
@ 2023-01-15 20:10 ` qemudev
  2023-01-15 20:13 ` |WARNING| " checkpatch
  2023-01-15 20:14 ` |FAILURE| " qemudev
  2 siblings, 0 replies; 4+ messages in thread
From: qemudev @ 2023-01-15 20:10 UTC (permalink / raw)
  To: test-report

Test-Label: loongarch-compilation
Test-Status: SUCCESS
http://dpdk.org/patch/122075

_Compilation OK_

Submitter: Vipin P R <vipinp@vmware.com>
Date: Fri, 13 Jan 2023 13:12:47 +0000
DPDK git baseline: Repo:dpdk
  Branch: main
  CommitID: 83397b9f073904438965e1fda2efe76f7850fe01

122075 --> meson & ninja build successfully

Test environment and result as below:

+---------------------+----------------+
|     Environment     | compilation    |
+---------------------+----------------+
| Loongnix-Server 8.3 | PASS           |
+---------------------+----------------+

Loongnix-Server 8.3
    Kernel: 4.19.190+
    Compiler: gcc 8.3


^ permalink raw reply	[flat|nested] 4+ messages in thread

* |WARNING| pw122075 [PATCH] Memory Allocation: Adding a new UT for fb_array
       [not found] <1673615567-20873-2-git-send-email-vipinp@vmware.com>
  2023-01-15 20:10 ` |SUCCESS| pw122075 [PATCH] Memory Allocation: Adding a new UT for fb_array qemudev
@ 2023-01-15 20:13 ` checkpatch
  2023-01-15 20:14 ` |FAILURE| " qemudev
  2 siblings, 0 replies; 4+ messages in thread
From: checkpatch @ 2023-01-15 20:13 UTC (permalink / raw)
  To: test-report; +Cc: Vipin P R

Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/122075

_coding style issues_


WARNING:LEADING_SPACE: please, no spaces at the start of a line
#135: FILE: app/test/test_fbarray.c:409:
+    struct rte_fbarray test_array;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#136: FILE: app/test/test_fbarray.c:410:
+    int input[] = {1, 1070, 1, 2, 1, 2, 4, 12, 2, 2, 1, 2, 1};$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#137: FILE: app/test/test_fbarray.c:411:
+    int ms_idx, prev_ms_idx, delta;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#138: FILE: app/test/test_fbarray.c:412:
+    int len;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#139: FILE: app/test/test_fbarray.c:413:
+    ms_idx = prev_ms_idx = 0;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#141: FILE: app/test/test_fbarray.c:415:
+    int ret = rte_fbarray_init(&test_array, "test", 32768, sizeof(struct rte_memseg));$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#142: FILE: app/test/test_fbarray.c:416:
+    if (ret == 0) {$

ERROR:CODE_INDENT: code indent should use tabs where possible
#143: FILE: app/test/test_fbarray.c:417:
+        RTE_LOG(DEBUG, EAL, "FB array init success
");$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#143: FILE: app/test/test_fbarray.c:417:
+        RTE_LOG(DEBUG, EAL, "FB array init success
");$

ERROR:CODE_INDENT: code indent should use tabs where possible
#144: FILE: app/test/test_fbarray.c:418:
+        int k = 0;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#144: FILE: app/test/test_fbarray.c:418:
+        int k = 0;$

ERROR:CODE_INDENT: code indent should use tabs where possible
#145: FILE: app/test/test_fbarray.c:419:
+        for(int i=0; i < sizeof(input)/sizeof(int); i++) {$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#145: FILE: app/test/test_fbarray.c:419:
+        for(int i=0; i < sizeof(input)/sizeof(int); i++) {$

WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements (8, 12)
#145: FILE: app/test/test_fbarray.c:419:
+        for(int i=0; i < sizeof(input)/sizeof(int); i++) {
+            if (i == 0) {

ERROR:SPACING: spaces required around that '=' (ctx:VxV)
#145: FILE: app/test/test_fbarray.c:419:
+        for(int i=0; i < sizeof(input)/sizeof(int); i++) {
                  ^

ERROR:SPACING: space required before the open parenthesis '('
#145: FILE: app/test/test_fbarray.c:419:
+        for(int i=0; i < sizeof(input)/sizeof(int); i++) {

ERROR:CODE_INDENT: code indent should use tabs where possible
#146: FILE: app/test/test_fbarray.c:420:
+            if (i == 0) {$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#146: FILE: app/test/test_fbarray.c:420:
+            if (i == 0) {$

WARNING:BRACES: braces {} are not necessary for any arm of this statement
#146: FILE: app/test/test_fbarray.c:420:
+            if (i == 0) {
[...]
+            } else {
[...]

ERROR:CODE_INDENT: code indent should use tabs where possible
#147: FILE: app/test/test_fbarray.c:421:
+                len = input[i];$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#147: FILE: app/test/test_fbarray.c:421:
+                len = input[i];$

ERROR:CODE_INDENT: code indent should use tabs where possible
#148: FILE: app/test/test_fbarray.c:422:
+            } else {$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#148: FILE: app/test/test_fbarray.c:422:
+            } else {$

ERROR:CODE_INDENT: code indent should use tabs where possible
#149: FILE: app/test/test_fbarray.c:423:
+                len = input[i] + 1;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#149: FILE: app/test/test_fbarray.c:423:
+                len = input[i] + 1;$

ERROR:CODE_INDENT: code indent should use tabs where possible
#150: FILE: app/test/test_fbarray.c:424:
+            }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#150: FILE: app/test/test_fbarray.c:424:
+            }$

ERROR:CODE_INDENT: code indent should use tabs where possible
#151: FILE: app/test/test_fbarray.c:425:
+            prev_ms_idx = ms_idx;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#151: FILE: app/test/test_fbarray.c:425:
+            prev_ms_idx = ms_idx;$

ERROR:CODE_INDENT: code indent should use tabs where possible
#152: FILE: app/test/test_fbarray.c:426:
+            ms_idx = rte_fbarray_find_next_n_free(&test_array, k, len);$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#152: FILE: app/test/test_fbarray.c:426:
+            ms_idx = rte_fbarray_find_next_n_free(&test_array, k, len);$

ERROR:CODE_INDENT: code indent should use tabs where possible
#154: FILE: app/test/test_fbarray.c:428:
+            if (i != 0) {$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#154: FILE: app/test/test_fbarray.c:428:
+            if (i != 0) {$

WARNING:BRACES: braces {} are not necessary for single statement blocks
#154: FILE: app/test/test_fbarray.c:428:
+            if (i != 0) {
+                ms_idx++;
+            }

ERROR:CODE_INDENT: code indent should use tabs where possible
#155: FILE: app/test/test_fbarray.c:429:
+                ms_idx++;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#155: FILE: app/test/test_fbarray.c:429:
+                ms_idx++;$

ERROR:CODE_INDENT: code indent should use tabs where possible
#156: FILE: app/test/test_fbarray.c:430:
+            }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#156: FILE: app/test/test_fbarray.c:430:
+            }$

ERROR:CODE_INDENT: code indent should use tabs where possible
#158: FILE: app/test/test_fbarray.c:432:
+            for (int j=0; j < input[i]; j++) {$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#158: FILE: app/test/test_fbarray.c:432:
+            for (int j=0; j < input[i]; j++) {$

ERROR:SPACING: spaces required around that '=' (ctx:VxV)
#158: FILE: app/test/test_fbarray.c:432:
+            for (int j=0; j < input[i]; j++) {
                       ^

ERROR:CODE_INDENT: code indent should use tabs where possible
#159: FILE: app/test/test_fbarray.c:433:
+                RTE_LOG(DEBUG, EAL, "ms_idx:%d
", ms_idx);$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#159: FILE: app/test/test_fbarray.c:433:
+                RTE_LOG(DEBUG, EAL, "ms_idx:%d
", ms_idx);$

ERROR:CODE_INDENT: code indent should use tabs where possible
#160: FILE: app/test/test_fbarray.c:434:
+                rte_fbarray_set_used(&test_array, ms_idx);$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#160: FILE: app/test/test_fbarray.c:434:
+                rte_fbarray_set_used(&test_array, ms_idx);$

ERROR:CODE_INDENT: code indent should use tabs where possible
#161: FILE: app/test/test_fbarray.c:435:
+                ms_idx++;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#161: FILE: app/test/test_fbarray.c:435:
+                ms_idx++;$

ERROR:CODE_INDENT: code indent should use tabs where possible
#162: FILE: app/test/test_fbarray.c:436:
+            }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#162: FILE: app/test/test_fbarray.c:436:
+            }$

ERROR:CODE_INDENT: code indent should use tabs where possible
#164: FILE: app/test/test_fbarray.c:438:
+            if (prev_ms_idx) {$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#164: FILE: app/test/test_fbarray.c:438:
+            if (prev_ms_idx) {$

ERROR:CODE_INDENT: code indent should use tabs where possible
#165: FILE: app/test/test_fbarray.c:439:
+                /* The value of ms_idx should be monotonically increasing$

ERROR:CODE_INDENT: code indent should use tabs where possible
#166: FILE: app/test/test_fbarray.c:440:
+                 * given the above input sequence in test_array.$

ERROR:CODE_INDENT: code indent should use tabs where possible
#167: FILE: app/test/test_fbarray.c:441:
+                 * */$

WARNING:BLOCK_COMMENT_STYLE: Block comments use a trailing */ on a separate line
#167: FILE: app/test/test_fbarray.c:441:
+                 * */

ERROR:CODE_INDENT: code indent should use tabs where possible
#168: FILE: app/test/test_fbarray.c:442:
+                delta = ms_idx - prev_ms_idx;$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#168: FILE: app/test/test_fbarray.c:442:
+                delta = ms_idx - prev_ms_idx;$

ERROR:CODE_INDENT: code indent should use tabs where possible
#169: FILE: app/test/test_fbarray.c:443:
+                if (!(delta > 0)) {$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#169: FILE: app/test/test_fbarray.c:443:
+                if (!(delta > 0)) {$

WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements (16, 20)
#169: FILE: app/test/test_fbarray.c:443:
+                if (!(delta > 0)) {
+                    RTE_LOG(ERR, EAL, "ms_idx jumping behind. ms_idx: %d prev_ms_idx: %d
", ms_idx - 1, prev_ms_idx - 1);

WARNING:LONG_LINE: line length of 122 exceeds 100 columns
#170: FILE: app/test/test_fbarray.c:444:
+                    RTE_LOG(ERR, EAL, "ms_idx jumping behind. ms_idx: %d prev_ms_idx: %d
", ms_idx - 1, prev_ms_idx - 1);

ERROR:CODE_INDENT: code indent should use tabs where possible
#170: FILE: app/test/test_fbarray.c:444:
+                    RTE_LOG(ERR, EAL, "ms_idx jumping behind. ms_idx: %d prev_ms_idx: %d
", ms_idx - 1, prev_ms_idx - 1);$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#170: FILE: app/test/test_fbarray.c:444:
+                    RTE_LOG(ERR, EAL, "ms_idx jumping behind. ms_idx: %d prev_ms_idx: %d
", ms_idx - 1, prev_ms_idx - 1);$

ERROR:CODE_INDENT: code indent should use tabs where possible
#171: FILE: app/test/test_fbarray.c:445:
+                    TEST_ASSERT(0, "Incorrect ms_idx jump");$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#171: FILE: app/test/test_fbarray.c:445:
+                    TEST_ASSERT(0, "Incorrect ms_idx jump");$

ERROR:CODE_INDENT: code indent should use tabs where possible
#172: FILE: app/test/test_fbarray.c:446:
+                }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#172: FILE: app/test/test_fbarray.c:446:
+                }$

ERROR:CODE_INDENT: code indent should use tabs where possible
#173: FILE: app/test/test_fbarray.c:447:
+            }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#173: FILE: app/test/test_fbarray.c:447:
+            }$

ERROR:CODE_INDENT: code indent should use tabs where possible
#174: FILE: app/test/test_fbarray.c:448:
+        }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#174: FILE: app/test/test_fbarray.c:448:
+        }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#175: FILE: app/test/test_fbarray.c:449:
+    }$

WARNING:LEADING_SPACE: please, no spaces at the start of a line
#176: FILE: app/test/test_fbarray.c:450:
+    return 0;$

total: 32 errors, 41 warnings, 67 lines checked
Warning in app/test/test_fbarray.c:
Declaring a variable inside for()
Vipin P R <vipinp@vmware.com> is unknown, please fix the commit message or update .mailmap.
Kumara Parameshwaran mail differs from primary mail, please fix the commit message or update .mailmap.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* |FAILURE| pw122075 [PATCH] Memory Allocation: Adding a new UT for fb_array
       [not found] <1673615567-20873-2-git-send-email-vipinp@vmware.com>
  2023-01-15 20:10 ` |SUCCESS| pw122075 [PATCH] Memory Allocation: Adding a new UT for fb_array qemudev
  2023-01-15 20:13 ` |WARNING| " checkpatch
@ 2023-01-15 20:14 ` qemudev
  2 siblings, 0 replies; 4+ messages in thread
From: qemudev @ 2023-01-15 20:14 UTC (permalink / raw)
  To: test-report; +Cc: Vipin P R, zhoumin

Test-Label: loongarch-unit-testing
Test-Status: FAILURE
http://dpdk.org/patch/122075

_Unit Testing FAIL_

Submitter: Vipin P R <vipinp@vmware.com>
Date: Fri, 13 Jan 2023 13:12:47 +0000
DPDK git baseline: Repo:dpdk
  Branch: main
  CommitID: 83397b9f073904438965e1fda2efe76f7850fe01

122075 --> testing fail

Test environment and result as below:

+---------------------+----------------+
|     Environment     | dpdk_unit_test |
+---------------------+----------------+
| Loongnix-Server 8.3 | FAIL           |
+---------------------+----------------+

Loongnix-Server 8.3
    Kernel: 4.19.190+
    Compiler: gcc 8.3


Test result details:
  1/103 DPDK:fast-tests / acl_autotest                            OK              2.78s
  2/103 DPDK:fast-tests / atomic_autotest                         OK              7.33s
  3/103 DPDK:fast-tests / bitmap_autotest                         OK              0.07s
  4/103 DPDK:fast-tests / bpf_autotest                            OK              0.07s
  5/103 DPDK:fast-tests / bpf_convert_autotest                    OK              0.07s
  6/103 DPDK:fast-tests / bitops_autotest                         OK              0.07s
  7/103 DPDK:fast-tests / byteorder_autotest                      OK              0.07s
  8/103 DPDK:fast-tests / cksum_autotest                          OK              0.07s
  9/103 DPDK:fast-tests / cmdline_autotest                        OK              0.07s
 10/103 DPDK:fast-tests / common_autotest                         OK              0.92s
 11/103 DPDK:fast-tests / cpuflags_autotest                       OK              0.07s
 12/103 DPDK:fast-tests / debug_autotest                          OK              1.42s
 13/103 DPDK:fast-tests / devargs_autotest                        OK              0.07s
 14/103 DPDK:fast-tests / eal_flags_c_opt_autotest                OK              0.57s
 15/103 DPDK:fast-tests / eal_flags_main_opt_autotest             OK              0.17s
 16/103 DPDK:fast-tests / eal_flags_n_opt_autotest                OK              0.17s
 17/103 DPDK:fast-tests / eal_flags_hpet_autotest                 OK              0.12s
 18/103 DPDK:fast-tests / eal_flags_no_huge_autotest              OK              0.17s
 19/103 DPDK:fast-tests / eal_flags_a_opt_autotest                OK              0.22s
 20/103 DPDK:fast-tests / eal_flags_b_opt_autotest                OK              0.17s
 21/103 DPDK:fast-tests / eal_flags_vdev_opt_autotest             OK              0.17s
 22/103 DPDK:fast-tests / eal_flags_r_opt_autotest                OK              0.17s
 23/103 DPDK:fast-tests / eal_flags_mem_autotest                  OK              0.52s
 24/103 DPDK:fast-tests / eal_flags_file_prefix_autotest          OK             21.97s
 25/103 DPDK:fast-tests / eal_flags_misc_autotest                 OK              0.72s
 26/103 DPDK:fast-tests / eal_fs_autotest                         OK              0.07s
 27/103 DPDK:fast-tests / errno_autotest                          OK              0.07s
 28/103 DPDK:fast-tests / ethdev_link_status                      OK              0.07s
 29/103 DPDK:fast-tests / event_ring_autotest                     OK              0.07s
 30/103 DPDK:fast-tests / fib_autotest                            OK              0.87s
 31/103 DPDK:fast-tests / fib6_autotest                           OK              0.87s
 32/103 DPDK:fast-tests / func_reentrancy_autotest                OK              2.39s
 33/103 DPDK:fast-tests / hash_autotest                           OK              0.97s
 34/103 DPDK:fast-tests / interrupt_autotest                      OK              1.27s
 35/103 DPDK:fast-tests / ipfrag_autotest                         OK              0.07s
 36/103 DPDK:fast-tests / lcores_autotest                         OK              1.02s
 37/103 DPDK:fast-tests / logs_autotest                           OK              0.07s
 38/103 DPDK:fast-tests / lpm_autotest                            OK              5.91s
 39/103 DPDK:fast-tests / lpm6_autotest                           OK              8.87s
 40/103 DPDK:fast-tests / malloc_autotest                         OK             63.29s
 41/103 DPDK:fast-tests / mbuf_autotest                           OK              7.13s
 42/103 DPDK:fast-tests / mcslock_autotest                        OK              4.02s
 43/103 DPDK:fast-tests / memcpy_autotest                         OK              6.63s
 44/103 DPDK:fast-tests / memory_autotest                         OK              0.07s
 45/103 DPDK:fast-tests / mempool_autotest                        OK              0.42s
 46/103 DPDK:fast-tests / memzone_autotest                        OK              0.17s
 47/103 DPDK:fast-tests / meter_autotest                          OK              0.07s
 48/103 DPDK:fast-tests / multiprocess_autotest                   OK              0.17s
 49/103 DPDK:fast-tests / per_lcore_autotest                      OK              0.17s
 50/103 DPDK:fast-tests / pflock_autotest                         OK              0.87s
 51/103 DPDK:fast-tests / prefetch_autotest                       OK              0.07s
 52/103 DPDK:fast-tests / rcu_qsbr_autotest                       OK              0.57s
 53/103 DPDK:fast-tests / pie_autotest                            OK              0.07s
 54/103 DPDK:fast-tests / rib_autotest                            OK             10.30s
 55/103 DPDK:fast-tests / rib6_autotest                           OK             10.30s
 56/103 DPDK:fast-tests / ring_autotest                           OK              0.12s
 57/103 DPDK:fast-tests / rwlock_test1_autotest                   OK              0.82s
 58/103 DPDK:fast-tests / rwlock_rda_autotest                     OK              5.07s
 59/103 DPDK:fast-tests / rwlock_rds_wrm_autotest                 OK              5.07s
 60/103 DPDK:fast-tests / rwlock_rde_wro_autotest                 OK              5.07s
 61/103 DPDK:fast-tests / sched_autotest                          OK              0.07s
 62/103 DPDK:fast-tests / security_autotest                       OK              0.07s
 63/103 DPDK:fast-tests / seqlock_autotest                        OK              2.07s
 64/103 DPDK:fast-tests / spinlock_autotest                       OK              0.17s
 65/103 DPDK:fast-tests / stack_autotest                          OK              0.87s
 66/103 DPDK:fast-tests / stack_lf_autotest                       SKIP            0.07s   exit status 77
 67/103 DPDK:fast-tests / string_autotest                         OK              0.07s
 68/103 DPDK:fast-tests / tailq_autotest                          OK              0.07s
 69/103 DPDK:fast-tests / ticketlock_autotest                     OK              0.22s
 70/103 DPDK:fast-tests / timer_autotest                          OK              3.97s
 71/103 DPDK:fast-tests / user_delay_us                           OK              0.07s
 72/103 DPDK:fast-tests / version_autotest                        OK              0.07s
 73/103 DPDK:fast-tests / crc_autotest                            OK              0.07s
 74/103 DPDK:fast-tests / distributor_autotest                    OK              1.22s
 75/103 DPDK:fast-tests / eventdev_common_autotest                OK              0.07s
 76/103 DPDK:fast-tests / fbarray_autotest                        FAIL            0.07s   exit status 255
 77/103 DPDK:fast-tests / hash_readwrite_func_autotest            OK              6.39s
 78/103 DPDK:fast-tests / ipsec_autotest                          SKIP            0.07s   exit status 77
 79/103 DPDK:fast-tests / kni_autotest                            SKIP            0.07s   exit status 77
 80/103 DPDK:fast-tests / kvargs_autotest                         OK              0.07s
 81/103 DPDK:fast-tests / member_autotest                         OK              1.32s
 82/103 DPDK:fast-tests / power_cpufreq_autotest                  SKIP            0.07s   exit status 77
 83/103 DPDK:fast-tests / power_autotest                          OK              0.07s
 84/103 DPDK:fast-tests / power_kvm_vm_autotest                   SKIP            0.07s   exit status 77
 85/103 DPDK:fast-tests / power_intel_uncore_autotest             SKIP            0.07s   exit status 77
 86/103 DPDK:fast-tests / reorder_autotest                        OK              0.12s
 87/103 DPDK:fast-tests / service_autotest                        OK              3.57s
 88/103 DPDK:fast-tests / thash_autotest                          OK              0.07s
 89/103 DPDK:fast-tests / threads_autotest                        OK              0.22s
 90/103 DPDK:fast-tests / trace_autotest                          OK              0.07s
 91/103 DPDK:fast-tests / trace_autotest_with_traces              OK              0.12s
 92/103 DPDK:fast-tests / metrics_autotest                        OK              0.07s
 93/103 DPDK:fast-tests / telemetry_json_autotest                 OK              0.07s
 94/103 DPDK:fast-tests / telemetry_data_autotest                 OK              0.07s
 95/103 DPDK:fast-tests / table_autotest                          OK             10.16s
 96/103 DPDK:fast-tests / ring_pmd_autotest                       OK              0.07s
 97/103 DPDK:fast-tests / event_eth_tx_adapter_autotest           OK              1.47s
 98/103 DPDK:fast-tests / bitratestats_autotest                   OK              0.07s
 99/103 DPDK:fast-tests / latencystats_autotest                   OK              0.07s
100/103 DPDK:fast-tests / pdump_autotest                          OK              5.17s
101/103 DPDK:fast-tests / vdev_autotest                           OK              0.07s
102/103 DPDK:fast-tests / compressdev_autotest                    SKIP            0.07s   exit status 77
103/103 DPDK:fast-tests / telemetry_all                           OK             14.44s


Ok:                 95
Expected Fail:      0
Fail:               1
Unexpected Pass:    0
Skipped:            7
Timeout:            0



Test logs for failed test cases:
================================================================================
DPDK:fast-tests / fbarray_autotest: FAIL
================================================================================
-------------------------------------stdout-------------------------------------
RTE>>fbarray_autotest
 + ------------------------------------------------------- +
 + Test Suite : fbarray autotest
 + ------------------------------------------------------- +
 + TestCase [ 0] : test_invalid succeeded
 + TestCase [ 1] : test_basic succeeded
 + TestCase [ 2] : test_jump failed
 + TestCase [ 3] : test_find succeeded
 + TestCase [ 4] : test_find succeeded
 + TestCase [ 5] : test_find succeeded
 + TestCase [ 6] : test_find succeeded
 + TestCase [ 7] : test_find succeeded
 + TestCase [ 8] : test_empty succeeded
 + ------------------------------------------------------- +
 + Test Suite Summary : fbarray autotest
 + ------------------------------------------------------- +
 + Tests Total :        9
 + Tests Skipped :      0
 + Tests Executed :     9
 + Tests Unsupported:   0
 + Tests Passed :       8
 + Tests Failed :       1
 + ------------------------------------------------------- +
Test Failed
RTE>>
-------------------------------------stderr-------------------------------------
EAL: Detected CPU lcores: 32
EAL: Detected NUMA nodes: 8
EAL: Detected static linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/fbarray_autotest/mp_socket
EAL: Selected IOVA mode 'PA'
TELEMETRY: No legacy callbacks, legacy socket not created
APP: HPET is not enabled, using TSC as default timer
EAL: ms_idx jumping behind. ms_idx: 1154 prev_ms_idx: 1159
EAL: Test assert test_jump line 445 failed: Incorrect ms_idx jump


^ permalink raw reply	[flat|nested] 4+ messages in thread

* |WARNING| pw122075 [PATCH] Memory Allocation: Adding a new UT for fb_array
@ 2023-01-15 23:31 dpdklab
  0 siblings, 0 replies; 4+ messages in thread
From: dpdklab @ 2023-01-15 23:31 UTC (permalink / raw)
  To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon, Vipin P R

[-- Attachment #1: Type: text/plain, Size: 6203 bytes --]

Test-Label: iol-abi-testing
Test-Status: WARNING
http://dpdk.org/patch/122075

_Testing issues_

Submitter: Vipin P R <vipinp@vmware.com>
Date: Friday, January 13 2023 13:12:47 
DPDK git baseline: Repo:dpdk
  Branch: master
  CommitID:83397b9f073904438965e1fda2efe76f7850fe01

122075 --> testing fail

Test environment and result as below:

+------------------+----------+
|   Environment    | abi_test |
+==================+==========+
| CentOS Stream 8  | PASS     |
+------------------+----------+
| openSUSE Leap 15 | PASS     |
+------------------+----------+
| CentOS Stream 9  | PASS     |
+------------------+----------+
| Debian Buster    | PASS     |
+------------------+----------+
| RHEL 7           | FAIL     |
+------------------+----------+
| Ubuntu 22.04     | PASS     |
+------------------+----------+
| Ubuntu 20.04     | PASS     |
+------------------+----------+
| Debian Bullseye  | PASS     |
+------------------+----------+
| RHEL8            | PASS     |
+------------------+----------+

==== 20 line log output for RHEL 7 (abi_test): ====
[2983/3272] Compiling C object 'app/test/3062f5d@@dpdk-test@exe/test_event_eth_rx_adapter.c.o'.
[2984/3272] Compiling C object 'app/test/3062f5d@@dpdk-test@exe/test_event_ring.c.o'.
[2985/3272] Compiling C object 'app/test/3062f5d@@dpdk-test@exe/test_event_timer_adapter.c.o'.
[2986/3272] Compiling C object 'app/test/3062f5d@@dpdk-test@exe/test_eventdev.c.o'.
[2987/3272] Compiling C object 'app/test/3062f5d@@dpdk-test@exe/test_external_mem.c.o'.
[2988/3272] Compiling C object 'app/test/3062f5d@@dpdk-test@exe/test_fbarray.c.o'.
FAILED: app/test/3062f5d@@dpdk-test@exe/test_fbarray.c.o
ccache cc -Iapp/test/3062f5d@@dpdk-test@exe -Iapp/test -I../app/test -I. -I../ -Iconfig -I../config -Ilib/eal/include -I../lib/eal/include -Ilib/eal/linux/include -I../lib/eal/linux/include -Ilib/eal/x86/include -I../lib/eal/x86/include -Ilib/kvargs -I../lib/kvargs -Ilib/telemetry/../metrics -I../lib/telemetry/../metrics -Ilib/telemetry -I../lib/telemetry -Ilib/eal/common -I../lib/eal/common -Ilib/eal -I../lib/eal -Ilib/ring -I../lib/ring -Ilib/rcu -I../lib/rcu -Ilib/mempool -I../lib/mempool -Ilib/mbuf -I../lib/mbuf -Ilib/net -I../lib/net -Ilib/meter -I../lib/meter -Ilib/ethdev -I../lib/ethdev -Ilib/pci -I../lib/pci -Ilib/cmdline -I../lib/cmdline -Ilib/metrics -I../lib/metrics -Ilib/hash -I../lib/hash -Ilib/timer -I../lib/timer -Ilib/acl -I../lib/acl -Ilib/bbdev -I../lib/bbdev -Ilib/bitratestats -I../lib/bitratestats -Ilib/bpf -I../lib/bpf -Ilib/cfgfile -I../lib/cfgfile -Ilib/compressdev -I../lib/compressdev -Ilib/cryptodev -I../lib/cryptodev -Ilib/distributor -I../lib/distributor -Ilib/efd -I../lib/efd -Ilib/eventdev -I../lib/eventdev -Ilib/gpudev -I../lib/gpudev -Ilib/gro -I../lib/gro -Ilib/gso -I../lib/gso -Ilib/ip_frag -I../lib/ip_frag -Ilib/jobstats -I../lib/jobstats -Ilib/latencystats -I../lib/latencystats -Ilib/lpm -I../lib/lpm -Ilib/member -I../lib/member -Ilib/pcapng -I../lib/pcapng -Ilib/power -I../lib/power -Ilib/rawdev -I../lib/rawdev -Ilib/regexdev -I../lib/regexdev -Ilib/dmadev -I../lib/dmadev -Ilib/rib -I../lib/rib -Ilib/reorder -I../lib/reorder -Ilib/sched -I../lib/sched -Ilib/security -I../lib/security -Ilib/stack -I../lib/stack -Ilib/vhost -I../lib/vhost -Ilib/ipsec -I../lib/ipsec -Ilib/fib -I../lib/fib -Ilib/port -I../lib/port -Ilib/pdump -I../lib/pdump -Ilib/table -I../lib/table -Ilib/pipeline -I../lib/pipeline -Ilib/graph -I../lib/graph -Ilib/node -I../lib/node -Idrivers/bus/pci -I../drivers/bus/pci -I../drivers/bus/pci/linux -Idrivers/bus/vdev -I../drivers/bus/vdev -Idrivers/mempool/ring -I../drivers/mempool/ring -Idrivers/mempool/stack -I../drivers/mempool/stack -Idrivers/event/skeleton -I../drivers/event/skeleton -Idrivers/net/bonding -I../drivers/net/bonding -Idrivers/net/ring -I../drivers/net/ring -Idrivers/net/null -I../drivers/net/null -Idrivers/crypto/scheduler -I../drivers/crypto/scheduler -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -O2 -g -include rte_config.h -Wcast-qual -Wdeprecated -Wformat -Wformat-nonliteral -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wsign-compare -Wstrict-prototypes -Wundef -Wwrite-strings -Wno-missing-field-initializers -D_GNU_SOURCE -march=native -DALLOW_EXPERIMENTAL_API -fno-strict-aliasing -DALLOW_INTERNAL_API -MD -MQ 'app/test/3062f5d@@dpdk-test@exe/test_fbarray.c.o' -MF 'app/test/3062f5d@@dpdk-test@exe/test_fbarray.c.o.d' -o 'app/test/3062f5d@@dpdk-test@exe/test_fbarray.c.o' -c ../app/test/test_fbarray.c
../app/test/test_fbarray.c: In function 'test_jump':
../app/test/test_fbarray.c:419:9: error: 'for' loop initial declarations are only allowed in C99 mode
for(int i=0; i < sizeof(input)/sizeof(int); i++) {
^
../app/test/test_fbarray.c:419:9: note: use option -std=c99 or -std=gnu99 to compile your code
../app/test/test_fbarray.c:419:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i < sizeof(input)/sizeof(int); i++) {
^
../app/test/test_fbarray.c:432:13: error: 'for' loop initial declarations are only allowed in C99 mode
for (int j=0; j < input[i]; j++) {
^
ninja: build stopped: subcommand failed.
==== End log output ====

CentOS Stream 8
	Kernel: 4.18.0-240.10.1.el8_3.x86_64
	Compiler: gcc 8.4.1 20200928

openSUSE Leap 15
	Kernel: 4.18.0-240.10.1.el8_3.x86_64
	Compiler: gcc 7.5.0

CentOS Stream 9
	Kernel: 4.18.0-240.10.1.el8_3.x86_64
	Compiler: gcc 11.3.1 20220421

Debian Buster
	Kernel: 5.4.0-122-generic
	Compiler: gcc 8.3.0-6

RHEL 7
	Kernel: 4.18.0-240.10.1.el8_3.x86_64
	Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)

Ubuntu 22.04
	Kernel: Container Host Kernel
	Compiler: clang 14.0.5-1.fc36

Ubuntu 20.04
	Kernel: 4.18.0-240.10.1.el8_3.x86_64
	Compiler: gcc 9.3.0-17ubuntu1~20.04

Debian Bullseye
	Kernel: 5.4.0-122-generic
	Compiler: gcc 10.2.1-6

RHEL8
	Kernel: 4.18.0-240.10.1.el8_3.x86_64
	Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)

To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24988/

UNH-IOL DPDK Community Lab

To manage your email subscriptions, visit: 
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-01-15 23:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1673615567-20873-2-git-send-email-vipinp@vmware.com>
2023-01-15 20:10 ` |SUCCESS| pw122075 [PATCH] Memory Allocation: Adding a new UT for fb_array qemudev
2023-01-15 20:13 ` |WARNING| " checkpatch
2023-01-15 20:14 ` |FAILURE| " qemudev
2023-01-15 23:31 |WARNING| " dpdklab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).