-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Modified cmake check scripts to specify `-L krnlmon` and `--output-on-failure` when running ctest. - Fixed a compile error in switchlink_link.c caused by the IFLA_LINKINFO refactoring. `create_lag_member` must always be defined now, even if LAG_OPTION is undefined, because it's a parameter to `process_linkinfo_attr()`. - Updated .gitignore file. Signed-off-by: Derek Foster <[email protected]>
- Loading branch information
Showing
4 changed files
with
11 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
#!/bin/bash | ||
|
||
rm -fr build install | ||
|
||
echo "" | ||
echo "===== Build ES2K with OVS =====" | ||
rm -fr build install | ||
set -e | ||
cmake -B build -C es2k.cmake -DWITH_OVSP4RT=ON | ||
cmake --build build -j4 --target install | ||
|
||
echo "" | ||
echo "===== Test ES2K with OVS =====" | ||
set +e | ||
(cd build; ctest) | ||
(cd build; ctest -L krnlmon --output-on-failure) | ||
|
||
rm -fr build install | ||
|
||
echo "" | ||
echo "===== Build ES2K without OVS =====" | ||
rm -fr build install | ||
set -e | ||
cmake -B build -C es2k.cmake -DWITH_OVSP4RT=OFF | ||
cmake --build build -j4 --target install | ||
|
||
echo "" | ||
echo "===== Test ES2K without OVS =====" | ||
set +e | ||
(cd build; ctest) | ||
(cd build; ctest -L krnlmon --output-on-failure) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters