aboutsummaryrefslogtreecommitdiffstats
path: root/test/gtest/test_tle_udp_stream_gen.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/gtest/test_tle_udp_stream_gen.h')
-rw-r--r--test/gtest/test_tle_udp_stream_gen.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/gtest/test_tle_udp_stream_gen.h b/test/gtest/test_tle_udp_stream_gen.h
index 294e37c..0f3d11b 100644
--- a/test/gtest/test_tle_udp_stream_gen.h
+++ b/test/gtest/test_tle_udp_stream_gen.h
@@ -345,7 +345,7 @@ test_tle_udp_gen_base::prepare_pcaps(string l_ip, string r_ip, int l_port,
string py_cmd;
/* generate pcap rx & tx files * for tests using scapy */
- py_cmd = "python ./test/gtest/test_scapy_gen.py ";
+ py_cmd = "python " + string(binpath) + "/test_scapy_gen.py ";
py_cmd = py_cmd + " " + l_ip + " " + r_ip + " " +
to_string(l_port) + " " + to_string(r_port) + " " +
to_string(nb_pkts);
@@ -356,7 +356,6 @@ test_tle_udp_gen_base::prepare_pcaps(string l_ip, string r_ip, int l_port,
py_cmd = py_cmd + " -bc4 " + to_string(l4_chksum);
py_cmd = py_cmd + " " + rx_pcap_dest;
system(py_cmd.c_str());
-
return 0;
}