From mboxrd@z Thu Jan 1 00:00:00 1970 From: Petr Vorel Date: Mon, 17 Jun 2019 23:46:19 +0200 Subject: [LTP] [PATCH v2 1/3] lib: adding .arch field in tst_test structure In-Reply-To: <20190615042048.29839-1-liwang@redhat.com> References: <20190615042048.29839-1-liwang@redhat.com> Message-ID: <20190617214619.GB19347@x230> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ltp@lists.linux.it Hi Li, > Testcases for specified arch should be limited on that only being supported > platform to run, we now create a function tst_on_arch to achieve this new > feature in LTP library. All you need to run a test on the expected arch is > to set the '.arch' string in the 'struct tst_test' to choose the required > arch list. e.g. '.arch = "x86_64 i386"'. > Signed-off-by: Li Wang Reviewed-by: Petr Vorel LGTM. FYI there is also HOST_CPU variable (since 00ff2c348f), but that does not help your patch. > --- > doc/test-writing-guidelines.txt | 26 ++++++++++ > include/tst_arch.h | 16 ++++++ > include/tst_test.h | 7 ++- > lib/tst_arch.c | 92 +++++++++++++++++++++++++++++++++ > 4 files changed, 140 insertions(+), 1 deletion(-) > create mode 100644 include/tst_arch.h > create mode 100644 lib/tst_arch.c > diff --git a/doc/test-writing-guidelines.txt b/doc/test-writing-guidelines.txt > index f1912dc12..b4fba0190 100644 > --- a/doc/test-writing-guidelines.txt > +++ b/doc/test-writing-guidelines.txt > @@ -1668,6 +1668,32 @@ sturct tst_test test = { > }; > ------------------------------------------------------------------------------- > +2.2.30 Testing on specified architecture ^ maybe specific? Kind regards, Petr