Commit 98e13848 authored by Ilya Leoshkevich's avatar Ilya Leoshkevich Committed by Alexei Starovoitov
Browse files

selftests/bpf: Fix decap_sanity_ns cleanup



decap_sanity prints the following on the 1st run:

    decap_sanity: sh: 1: Syntax error: Bad fd number

and the following on the 2nd run:

    Cannot create namespace file "/run/netns/decap_sanity_ns": File exists

The problem is that the cleanup command has a typo and does nothing.
Fix the typo.

Signed-off-by: default avatarIlya Leoshkevich <iii@linux.ibm.com>
Link: https://lore.kernel.org/r/20230128000650.1516334-9-iii@linux.ibm.com


Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent 804acdd2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,6 +80,6 @@ void test_decap_sanity(void)
		bpf_tc_hook_destroy(&qdisc_hook);
		close_netns(nstoken);
	}
	system("ip netns del " NS_TEST " >& /dev/null");
	system("ip netns del " NS_TEST " &> /dev/null");
	decap_sanity__destroy(skel);
}