From 30f73a954d630729e3618d57c4e5d47a39300a15 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Fri, 10 Jun 2016 16:56:46 +0200 Subject: tests: shuffle values that are injected Shuffle value that are used to set attributes, this variability should help us catch more problems in the future. Signed-off-by: Pablo Neira Ayuso --- tests/nft-expr_queue-test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/nft-expr_queue-test.c') diff --git a/tests/nft-expr_queue-test.c b/tests/nft-expr_queue-test.c index 654e13c..1cc39aa 100644 --- a/tests/nft-expr_queue-test.c +++ b/tests/nft-expr_queue-test.c @@ -58,9 +58,9 @@ int main(int argc, char *argv[]) if (ex == NULL) print_err("OOM"); - nftnl_expr_set_u16(ex, NFTNL_EXPR_QUEUE_NUM, 0x123); - nftnl_expr_set_u16(ex, NFTNL_EXPR_QUEUE_TOTAL, 0x2); - nftnl_expr_set_u16(ex, NFTNL_EXPR_QUEUE_FLAGS, 0x2); + nftnl_expr_set_u16(ex, NFTNL_EXPR_QUEUE_NUM, 0x01010); + nftnl_expr_set_u16(ex, NFTNL_EXPR_QUEUE_TOTAL, 0x1234); + nftnl_expr_set_u16(ex, NFTNL_EXPR_QUEUE_FLAGS, 0x4321); nftnl_rule_add_expr(a, ex); -- cgit v1.2.3