diff options
author | Arturo Borrero Gonzalez <arturo@debian.org> | 2016-10-18 10:49:34 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-10-21 12:22:12 +0200 |
commit | bb636b8651f88a92279eb587f66bd038e6ad526c (patch) | |
tree | 42821c483715edca4d74f169c57e24ae1fef7461 /tests/shell/run-tests.sh | |
parent | a3ebc989d32e880ba19dae62db1f1164a9402ee2 (diff) |
tests: shell: update kernel modules to clean
Let's keep the kernel_cleanup() function updated with latest
kernel changes:
* added nft_quota, nft_queue, nft_numgen, nft_range
* rename nft_hash to nft_set_hash
* keep nft_hash as well
* rename nft_rbtree to nft_set_rbtree
The idea is to run each test in a clean evironment.
Signed-off-by: Arturo Borrero Gonzalez <arturo@debian.org>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/shell/run-tests.sh')
-rwxr-xr-x | tests/shell/run-tests.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/shell/run-tests.sh b/tests/shell/run-tests.sh index 32776550..ff243444 100755 --- a/tests/shell/run-tests.sh +++ b/tests/shell/run-tests.sh @@ -54,9 +54,11 @@ kernel_cleanup() { nft_redir_ipv4 nft_redir_ipv6 nft_redir \ nft_dup_ipv4 nft_dup_ipv6 nft_dup nft_nat \ nft_masq_ipv4 nft_masq_ipv6 nft_masq \ - nft_exthdr nft_payload nft_cmp \ + nft_exthdr nft_payload nft_cmp nft_range \ + nft_quota nft_queue nft_numgen \ nft_meta nft_meta_bridge nft_counter nft_log nft_limit \ - nft_hash nft_rbtree nft_ct nft_compat \ + nft_hash nft_ct nft_compat \ + nft_set_hash nft_set_rbtree \ nft_chain_nat_ipv4 nft_chain_nat_ipv6 \ nf_tables_inet nf_tables_bridge nf_tables_arp \ nf_tables_ipv4 nf_tables_ipv6 nf_tables |