From patchwork Mon Jul 23 09:44:28 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yixin Zhang X-Patchwork-Id: 947670 X-Patchwork-Delegate: petr.vorel@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=lists.linux.it (client-ip=2001:1418:10:5::2; helo=picard.linux.it; envelope-from=ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=intel.com Received: from picard.linux.it (picard.linux.it [IPv6:2001:1418:10:5::2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41YxRS2zKbz9s3N for ; Mon, 23 Jul 2018 19:44:50 +1000 (AEST) Received: from picard.linux.it (localhost [IPv6:::1]) by picard.linux.it (Postfix) with ESMTP id 30C873E7046 for ; Mon, 23 Jul 2018 11:44:47 +0200 (CEST) X-Original-To: ltp@lists.linux.it Delivered-To: ltp@picard.linux.it Received: from in-2.smtp.seeweb.it (in-2.smtp.seeweb.it [217.194.8.2]) by picard.linux.it (Postfix) with ESMTP id F13C53E6FFE for ; Mon, 23 Jul 2018 11:44:43 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by in-2.smtp.seeweb.it (Postfix) with ESMTPS id BBEEB600EB2 for ; Mon, 23 Jul 2018 11:44:40 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Jul 2018 02:44:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,393,1526367600"; d="scan'208";a="59027318" Received: from yixin-desktop.sh.intel.com ([10.239.161.27]) by orsmga008.jf.intel.com with ESMTP; 23 Jul 2018 02:44:37 -0700 From: Yixin Zhang To: ltp@lists.linux.it Date: Mon, 23 Jul 2018 17:44:28 +0800 Message-Id: <20180723094428.25066-1-yixin.zhang@intel.com> X-Mailer: git-send-email 2.14.1 X-Virus-Scanned: clamav-milter 0.99.2 at in-2.smtp.seeweb.it X-Virus-Status: Clean X-Spam-Status: No, score=-0.0 required=7.0 tests=SPF_PASS autolearn=disabled version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on in-2.smtp.seeweb.it Cc: Yixin Zhang Subject: [LTP] [PATCH v2 ltp] syscalls/ipc/msgstress/msgstress{01, 02, 03, 04}: update TCID X-BeenThere: ltp@lists.linux.it X-Mailman-Version: 2.1.18 Precedence: list List-Id: Linux Test Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it Sender: "ltp" The tests are renamed from kernel/syscalls/ipc/msgctl/msgctl08-11 in commmit 3e882e3e4c2d7601e66d67977a8ce4c4f88f8099. Update TCID in source files accordingly. Signed-off-by: Yixin Zhang --- testcases/kernel/syscalls/ipc/msgstress/msgstress01.c | 2 +- testcases/kernel/syscalls/ipc/msgstress/msgstress02.c | 2 +- testcases/kernel/syscalls/ipc/msgstress/msgstress03.c | 4 ++-- testcases/kernel/syscalls/ipc/msgstress/msgstress04.c | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/testcases/kernel/syscalls/ipc/msgstress/msgstress01.c b/testcases/kernel/syscalls/ipc/msgstress/msgstress01.c index 7bcec501b..6e7f0c1f2 100644 --- a/testcases/kernel/syscalls/ipc/msgstress/msgstress01.c +++ b/testcases/kernel/syscalls/ipc/msgstress/msgstress01.c @@ -41,7 +41,7 @@ #include "ipcmsg.h" #include "../lib/libmsgctl.h" -char *TCID = "msgctl08"; +char *TCID = "msgstress01"; int TST_TOTAL = 1; #ifndef CONFIG_COLDFIRE diff --git a/testcases/kernel/syscalls/ipc/msgstress/msgstress02.c b/testcases/kernel/syscalls/ipc/msgstress/msgstress02.c index 3d6a6e1d7..1e63c56a3 100644 --- a/testcases/kernel/syscalls/ipc/msgstress/msgstress02.c +++ b/testcases/kernel/syscalls/ipc/msgstress/msgstress02.c @@ -39,7 +39,7 @@ #include "ipcmsg.h" #include "../lib/libmsgctl.h" -char *TCID = "msgctl09"; +char *TCID = "msgstress02"; int TST_TOTAL = 1; #define MAXNREPS 1000 diff --git a/testcases/kernel/syscalls/ipc/msgstress/msgstress03.c b/testcases/kernel/syscalls/ipc/msgstress/msgstress03.c index f0f873f46..da4db1cb9 100644 --- a/testcases/kernel/syscalls/ipc/msgstress/msgstress03.c +++ b/testcases/kernel/syscalls/ipc/msgstress/msgstress03.c @@ -21,7 +21,7 @@ /* * Get and manipulate a message queue. - * Same as msgctl08 but gets the actual msgmni value under procfs. + * Same as msgstress01 but gets the actual msgmni value under procfs. */ #define _XOPEN_SOURCE 500 @@ -42,7 +42,7 @@ #include "ipcmsg.h" #include "../lib/libmsgctl.h" -char *TCID = "msgctl10"; +char *TCID = "msgstress03"; int TST_TOTAL = 1; #define MAXNPROCS 10000 /*These should be sufficient */ diff --git a/testcases/kernel/syscalls/ipc/msgstress/msgstress04.c b/testcases/kernel/syscalls/ipc/msgstress/msgstress04.c index 89099a7c7..61a81081d 100644 --- a/testcases/kernel/syscalls/ipc/msgstress/msgstress04.c +++ b/testcases/kernel/syscalls/ipc/msgstress/msgstress04.c @@ -21,7 +21,7 @@ /* * Get and manipulate a message queue. - * Same as msgctl09 but gets the actual msgmni value under procfs. + * Same as msgstress02 but gets the actual msgmni value under procfs. */ #define _XOPEN_SOURCE 500 @@ -40,7 +40,7 @@ #include "ipcmsg.h" #include "../lib/libmsgctl.h" -char *TCID = "msgctl11"; +char *TCID = "msgstress04"; int TST_TOTAL = 1; #define MAXNREPS 1000