Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
d6f716bc
Commit
d6f716bc
authored
Mar 15, 2018
by
yonghong-song
Committed by
GitHub
Mar 15, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1632 from nirmoy/add-iperf3
cmake: search for iperf3 if there is no iperf
parents
75ac3a3e
2a28a7f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
tests/python/CMakeLists.txt
tests/python/CMakeLists.txt
+4
-1
No files found.
tests/python/CMakeLists.txt
View file @
d6f716bc
...
...
@@ -11,7 +11,10 @@ if(NETPERF STREQUAL "NETPERF-NOTFOUND")
endif
()
find_program
(
IPERF iperf
)
if
(
IPERF STREQUAL
"IPERF-NOTFOUND"
)
message
(
WARNING
"Recommended test program 'iperf' not found"
)
find_program
(
IPERF3 iperf3
)
if
(
IPERF3 STREQUAL
"IPERF3-NOTFOUND"
)
message
(
WARNING
"Recommended test program 'iperf' or 'iperf3' not found"
)
endif
()
endif
()
add_test
(
NAME py_test_stat1_b WORKING_DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment