From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo Neira Ayuso Subject: Re: [PATCH v2] tests: xlate: print tests passed and error for testfile argument Date: Tue, 17 Oct 2017 14:45:24 +0200 Message-ID: <20171017124524.GA20587@salvia> References: <20171017092458.18672-1-harshasharmaiitr@gmail.com> <20171017112757.GA8578@salvia> <20171017124421.GA20525@salvia> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: netfilter-devel@vger.kernel.org, outreachy-kernel To: Harsha Sharma Return-path: Received: from mail.us.es ([193.147.175.20]:55520 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758213AbdJQMpc (ORCPT ); Tue, 17 Oct 2017 08:45:32 -0400 Received: from antivirus1-rhel7.int (unknown [192.168.2.11]) by mail.us.es (Postfix) with ESMTP id 533A652304 for ; Tue, 17 Oct 2017 14:45:31 +0200 (CEST) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 3AF67DA878 for ; Tue, 17 Oct 2017 14:45:31 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20171017124421.GA20525@salvia> Sender: netfilter-devel-owner@vger.kernel.org List-ID: On Tue, Oct 17, 2017 at 02:44:21PM +0200, Pablo Neira Ayuso wrote: > On Tue, Oct 17, 2017 at 06:11:20PM +0530, Harsha Sharma wrote: > > On Tue, Oct 17, 2017 at 4:57 PM, Pablo Neira Ayuso wrote: > > > On Tue, Oct 17, 2017 at 02:54:58PM +0530, Harsha Sharma wrote: > > >> Print tests passed with errors and warnings when run with only specified > > >> test file. > > > > > > I would expect this works like this, for consistency with other test > > > infrastructure we have: > > > > > > # python xlate-test.py extensions/libxt_ecn.txlate > > > Error: test file does not exist > > > > > > I can see here this works like this: > > > > > > # python xlate-test.py libxt_ecn.txlate > > > > > > But as said, it is counterintuitive. Would you revisit this patch? > > What I have tried to do int this patch is > > for e.g. > > > > # sudo python xlate-test.py libxt_ecn.txlate > > will not result into any output as all tests are passed > > but with this patch > > # sudo python xlate-test.py libxt_ecn.txlate (gives output) > > ## libxt_ecn > > Ok > > src: iptables-translate -A INPUT -m ecn --ecn-ip-ect 0 > > res: nft add rule ip filter INPUT ip ecn not-ect counter > > > > Ok > > src: iptables-translate -A INPUT -m ecn --ecn-ip-ect 1 > > res: nft add rule ip filter INPUT ip ecn ect1 counter > > > > which is expected output as one should get to know if the tests are passed > > or not . > > > > Thanks. Please let me know if this is expected output or not. > > I see, thanks for explaining. > > I would prefer you make this converge with the output of > iptables-test.py. It would be great if you can update the > xlate-tests.py so the output looks the same. If you can fix xlate-tests.py to work with: # python xlate-test.py extensions/libxt_ecn.txlate that would be great too :-).