[LTP] LTP release

Petr Vorel pvorel@suse.cz
Tue Jan 24 21:58:42 CET 2023


> Hi all,

> > Hi!
> > I did my share of pre-release testing and apart from the statvfs01 I've
> > send a patch for there rest of results looks green.

> > I also did test the runltp-ng and we fixed a few bugs there in order to
> > have a flawless experince since it will be introduced in the LTP
> > tarball. It would be great if anyone else would do so as well.

> > And given that the mailing list is mostly silent I suppose, unless
> > anybody objects, that we can freeze the git now and declare the next
> > week as pre-release testing week. With that we would be aiming for the
> > release either at Friday 27.01. or at Monday or Tuesday 29-30.01.

> I'd be for Friday (given there is SUSE hackweek since Monday).
> I'm going to do build testing for various architectures.
> I can help to tag the release and upload files (as I did last release).

> But before I'll try to fix nft01.sh -6, which is broken on newest 1.8.9:

> nft01 2 TINFO: Use nft to DROP packets from particular IP
> nft01 2 TINFO: Rule to block icmp from ::1
> nft01 2 TFAIL: nft command failed to append new rule
> Error: syntax error, unexpected junk
> 'add rule ip6 filter INPUT meta l4proto ipv6-icmp ip6 saddr ::1 counter drop'

I'm not sure, but it looks like 83604e7f ("xlate: get rid of escape_quotes")
broke the test (not sure, because xtables-nft-multi which I compiled from
iptables git, which is a symlink to ip6tables-translate, which is used here
always fail, but since 83604e7f the error message is the same as what I see on
openSUSE Tumbleweed	iputils v1.8.9).

I'm not really sure what should be changed in this line:

		$(ip${TST_IPV6}tables-translate $@ | sed 's,\\,,g')

Kind regards,
Petr

> Kind regards,
> Petr

[1] https://git.netfilter.org/iptables/commit/?id=83604e7f7327b6b3197f98b4e579a2b88a4c7356

+++ testcases/network/iptables/iptables_lib.sh
@@ -22,7 +22,7 @@ NFRUN()
 	if [ "$use_iptables" = 1 ]; then
 		ip${TST_IPV6}tables $@
 	else
-		$(ip${TST_IPV6}tables-translate $@ | sed 's,\\,,g')
+		$(ip${TST_IPV6}tables-translate $@)
 	fi
 }
 


More information about the ltp mailing list