From mboxrd@z Thu Jan 1 00:00:00 1970 From: Petr Vorel Date: Mon, 17 Jun 2019 23:49:01 +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: <20190617214901.GC19347@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"'. Just one note, strings are error prone. I wonder if defining constants and using array would be too complicated for this use case. Kind regards, Petr