From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8844945648; Thu, 18 Jul 2024 21:11:01 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 699514069D; Thu, 18 Jul 2024 21:11:01 +0200 (CEST) Received: from mail-pl1-f182.google.com (mail-pl1-f182.google.com [209.85.214.182]) by mails.dpdk.org (Postfix) with ESMTP id 34EAD4029B for ; Thu, 18 Jul 2024 21:11:00 +0200 (CEST) Received: by mail-pl1-f182.google.com with SMTP id d9443c01a7336-1fb1c918860so17911355ad.1 for ; Thu, 18 Jul 2024 12:11:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20230601.gappssmtp.com; s=20230601; t=1721329859; x=1721934659; darn=dpdk.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=1poFbE1oxBASyqtsyp+Qkx+6dJT5ylKeE+rZ00wores=; b=gEroxNPpsOp+Wb1jPLi5Vo7IUSwsD+kLhqR9cuvNvJHXVLgoLJeHpfQ1gHPgjYNqFw Jx7B1WBxykkiWsE9zP9GKgaGDGz3gGZ6/mBq8+8i1GoZkBF0A0GNnLx1iplLz5QkK2c6 zm4cfF3u1gxKBiDS8r1lAXfFCIU0yYFtlfCrQio0t7flaeZu2MXZCKXQCgSqB3gxHBxe YN7BpLqtzWjk99k1VHabUEd+Zf7NTNi2YR09tnQj1tSqmcNYYkYNITVARFxx8RzGii4t 4Exl5JORnXkyqs68SxPUScsRmus1/6z+jCmW0N0tJHxbggSkkS+emYd42/OyJ525UoXd L3ug== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1721329859; x=1721934659; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=1poFbE1oxBASyqtsyp+Qkx+6dJT5ylKeE+rZ00wores=; b=s7CDQXBEfLo+Ffct6e9MaSNRF+9C/IgdbVTjDdIOh6IYZEgGPwNPDjpP7n6OmpipvI yA/xtwjU4NAKE5uAUMu+YQ9v9uY4tym+uu07tnaxfpYlNoJQgt0EG+6NY69yO8cdz2/K n1EHuFjcQua9G7GWHwtRd4FoZbgkE5BofKQyQlftEk4lxrqKhoRT0xWkXwvZrWcQI5Fq kYFjNpqYTp8NhH/Ge+LY8I3CRNaDkHdGR10TjAqwICifOt68Qh5l8vq4Cwpt9siOB6ex DMqdC7tthpMP5RCF5lLZuBIJLCHi8HxiZPLdKaGCDYtOlX8E/yliIlmJmAfzYUem0Ajw Uj7w== X-Gm-Message-State: AOJu0YznnkuCK1WIKG1/XjeKZa7zILX8psT2SJBGdEzW9LKCZ4M51gJj lBWhFsKRh8zaK9ldPsMpOt2b3lk7kb9PdfzcNLazQcWPblaj2ycTZhXfzl1M8yH0FhkZ5WAUdvw E+5w= X-Google-Smtp-Source: AGHT+IHI6qUW9vYvK9MnIXpmLKbIP8KkRsbzIDXpbxMLTQEmiLYH/XnKEdGEk12zgFtCMnA+tDHJ4g== X-Received: by 2002:a17:903:120b:b0:1fb:9cbf:b4e3 with SMTP id d9443c01a7336-1fc5b641bcemr59934755ad.22.1721329859284; Thu, 18 Jul 2024 12:10:59 -0700 (PDT) Received: from hermes.local (204-195-96-226.wavecable.com. [204.195.96.226]) by smtp.gmail.com with ESMTPSA id d9443c01a7336-1fc0bc384dfsm97244165ad.209.2024.07.18.12.10.58 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 18 Jul 2024 12:10:58 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Subject: [PATCH 0/4] Enable more unit tests Date: Thu, 18 Jul 2024 12:07:11 -0700 Message-ID: <20240718191049.84865-1-stephen@networkplumber.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Several of the unit tests were not listed in any test suite and therefore were rarely run. When running build this was reported as errors: WARNING: Test "alarm_autotest" is not defined in any test suite WARNING: Test "cksum_perf_autotest" is not defined in any test suite Put the alarm, cksum, and timer tests into the appropriate test suite. More tests should be updated (later). Stephen Hemminger (4): test: update alarm test test: run cksum tests as part of perf test suite test: make red test part of fast suite test: run timer secondary tests as part of fast suite app/test/test_alarm.c | 53 +++++++++++++-------------------- app/test/test_cksum_perf.c | 3 +- app/test/test_red.c | 2 +- app/test/test_timer_secondary.c | 2 +- 4 files changed, 23 insertions(+), 37 deletions(-) -- 2.43.0