-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from eProsima/release/1.7.1
Release 1.7.1
- Loading branch information
Showing
9 changed files
with
747 additions
and
556 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Here you can find the source code used in the documentation and also the XML examples. | ||
They are located here to test they are right. | ||
|
||
|
||
# Testing | ||
|
||
## Source code | ||
|
||
Source code is located in the file `CodeTester.cpp`. | ||
CMake is used to compile the source code. | ||
|
||
``` | ||
mkdir build && cd build | ||
cmake .. | ||
``` | ||
|
||
By default it will try to use the same git branch's name to clone FastRTPS. | ||
If you want to use another FastRTPS's branch you have the option `FASTRTPS_BRANCH`. | ||
|
||
```bash | ||
mkdir build && cd build | ||
cmake -DFASTRTPS_BRANCH=develop .. | ||
``` | ||
|
||
## XML examples | ||
|
||
XML examples are located in the file `XMLTester.xml`. | ||
The generated application has the functionality to check the XML file against FastRTPS XML parser. | ||
You can use CTest to run the application and check the XML examples. | ||
|
||
```bash | ||
ctest -VV | ||
``` |
Oops, something went wrong.