From mboxrd@z Thu Jan 1 00:00:00 1970 From: Clemens Famulla-Conrad Date: Wed, 18 Sep 2019 19:19:36 +0200 Subject: [LTP] [PATCH v2 2/3] shell: Introduce TST_TIMEOUT variable In-Reply-To: <20190918135327.GA20793@x230> References: <20190913125823.17314-1-pvorel@suse.cz> <20190913125823.17314-3-pvorel@suse.cz> <20190917165520.GA30320@x230> <20190918082421.GA11711@x230> <20190918095023.GA31233@x230> <20190918135327.GA20793@x230> Message-ID: <1568827176.6619.4.camel@suse.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ltp@lists.linux.it On Wed, 2019-09-18 at 15:53 +0200, Petr Vorel wrote: > Hi Li, > > > > > If the $LTP_TIMEOUT_MUL is float and awk command is missing, > > > > how things > > > > will be going? > > > > It will break at: > > > > tst_test_cmds awk > > > > right? > > > > > > Yes. The concern is described in the commit message (but it > > > should also be > > > in > > > wiki page I guess): you want float => you need awk. You don't > > > have float, > > > just > > > set it as int (which will affect also C). > > > Does it make sense? Is it useful? > > > > It's working, but not elegant. Not sure how many people will go > > through the > > documents for such tiny issues. > > Is there any possibility to handle float by default, and if no awk > > supporting, just round up the float to integer and use it do > > testing > > automatically? > > Yep, that's better idea, thanks! > I'll print some info in case of forcing to round to int in v3. I like this idea, too.