From e768dc68155ba835882733753844a570d8384646 Mon Sep 17 00:00:00 2001 From: imarom Date: Sun, 25 Sep 2016 09:15:17 +0300 Subject: fixing up all gtests results (due to split now in order instead of segments) --- src/gtest/trex_stateless_gtest.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/gtest') diff --git a/src/gtest/trex_stateless_gtest.cpp b/src/gtest/trex_stateless_gtest.cpp index 96a6d255..09942c57 100644 --- a/src/gtest/trex_stateless_gtest.cpp +++ b/src/gtest/trex_stateless_gtest.cpp @@ -244,7 +244,7 @@ TEST_F(basic_vm, vm0) { vm.add_instruction( new StreamVmInstructionFixChecksumIpv4(20) ); vm.add_instruction( new StreamVmInstructionFlowMan( "var1",8, - StreamVmInstructionFlowMan::FLOW_VAR_OP_INC,0,1,7 ) + StreamVmInstructionFlowMan::FLOW_VAR_OP_INC,1,1,7 ) ); vm.add_instruction( new StreamVmInstructionWriteToPkt( "var1",14, 0,true) ); @@ -257,7 +257,7 @@ TEST_F(basic_vm, vm1) { StreamVm vm; vm.add_instruction( new StreamVmInstructionFlowMan( "var1",1, - StreamVmInstructionFlowMan::FLOW_VAR_OP_INC,0,1,7 ) + StreamVmInstructionFlowMan::FLOW_VAR_OP_INC,1,1,7 ) ); vm.add_instruction( new StreamVmInstructionWriteToPkt( "var1",26, 0,true) ); @@ -2006,14 +2006,14 @@ TEST_F(basic_vm, vm_syn_attack) { vm.add_instruction( new StreamVmInstructionFlowMan( "src_port", 2, StreamVmInstructionFlowMan::FLOW_VAR_OP_RANDOM, - 0, + 1025, 1025, 65000)); vm.add_instruction( new StreamVmInstructionFlowMan( "dst_port", 2, StreamVmInstructionFlowMan::FLOW_VAR_OP_RANDOM, - 0, + 1025, 1025, 65000)); @@ -2158,7 +2158,7 @@ TEST_F(basic_vm, vm_inc_size_64_128) { vm.add_instruction( new StreamVmInstructionFlowMan( "rand_pkt_size_var", 2, // size var must be 16bit size StreamVmInstructionFlowMan::FLOW_VAR_OP_INC, - 127, + 128, 128, 256)); @@ -2187,7 +2187,7 @@ TEST_F(basic_vm, vm_random_size_64_128) { vm.add_instruction( new StreamVmInstructionFlowMan( "rand_pkt_size_var", 2, // size var must be 16bit size StreamVmInstructionFlowMan::FLOW_VAR_OP_RANDOM, - 0, + 128, 128, 256)); @@ -2221,7 +2221,7 @@ TEST_F(basic_vm, vm_random_size_64_127_128) { vm.add_instruction( new StreamVmInstructionFlowMan( "rand_pkt_size_var", 2, // size var must be 16bit size StreamVmInstructionFlowMan::FLOW_VAR_OP_RANDOM, - 127, + 128, 128, 256)); -- cgit 1.2.3-korg