summaryrefslogtreecommitdiffstats
path: root/src/gtest
diff options
context:
space:
mode:
authorimarom <imarom@cisco.com>2016-09-25 09:15:17 +0300
committerimarom <imarom@cisco.com>2016-09-25 15:08:08 +0300
commite768dc68155ba835882733753844a570d8384646 (patch)
tree89855a1b8dad3cf29351a1a0d73606a2c9c0d52d /src/gtest
parent2cf444195c3d8a0215216e5f1899fded15bd7627 (diff)
fixing up all gtests results (due to split now in order instead of
segments)
Diffstat (limited to 'src/gtest')
-rw-r--r--src/gtest/trex_stateless_gtest.cpp14
1 files changed, 7 insertions, 7 deletions
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));