diff --git a/.travis.yml b/.travis.yml index bfb4884d..534f3ef9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ before_script: - ruby --version script: - # configure robot-testing framework + # configure robot-testing-framework - mkdir build - cd build - if [ "$TRAVIS_OS_NAME" == "linux" ]; then cmake -DENABLE_CODE_PROFILING:BOOL=ON -DENABLE_LUA_PLUGIN:BOOL=ON -DENABLE_PYTHON_PLUGIN:BOOL=ON -DENABLE_WEB_LISTENER:BOOL=ON ..; fi diff --git a/README.md b/README.md index 20169c25..849f80a5 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -[![Release](https://img.shields.io/github/tag/robotology/robot-testing.svg?label=Release)](https://github.com/robotology/robot-testing/tags) -[![License](https://img.shields.io/badge/Licence-LGPL-blue.svg)](http://robotology.github.io/robot-testing/index.html) -[![Build Status](https://travis-ci.org/robotology/robot-testing.svg?branch=master)](https://travis-ci.org/robotology/robot-testing) -[![Coverage Status](https://coveralls.io/repos/github/robotology/robot-testing/badge.svg?branch=master)](https://coveralls.io/github/robotology/robot-testing?branch=master) +[![Release](https://img.shields.io/github/tag/robotology/robot-testing-framework.svg?label=Release)](https://github.com/robotology/robot-testing-framework/tags) +[![License](https://img.shields.io/badge/Licence-LGPL-blue.svg)](http://robotology.github.io/robot-testing-framework/index.html) +[![Build Status](https://travis-ci.org/robotology/robot-testing-framework.svg?branch=master)](https://travis-ci.org/robotology/robot-testing-framework) +[![Coverage Status](https://coveralls.io/repos/github/robotology/robot-testing-framework/badge.svg?branch=master)](https://coveralls.io/github/robotology/robot-testing-framework?branch=master) -[![Language](https://img.shields.io/badge/Language-C%2B%2B-blue.svg)](http://robotology.github.io/robot-testing/documentation/robottestingframework_plugin_example.html) -[![Language](https://img.shields.io/badge/Language-ADA-blue.svg)](https://github.com/robotology/robot-testing/tree/master/examples/ada-plugin) -[![Language](https://img.shields.io/badge/Language-Python-blue.svg)](http://robotology.github.io/robot-testing/documentation/robottestingframework_python_plugin_example.html) -[![Language](https://img.shields.io/badge/Language-Ruby-blue.svg)](http://robotology.github.io/robot-testing/documentation/robottestingframework_ruby_plugin_example.html) -[![Language](https://img.shields.io/badge/Language-Lua-blue.svg)](http://robotology.github.io/robot-testing/documentation/robottestingframework_lua_plugin_example.html) +[![Language](https://img.shields.io/badge/Language-C%2B%2B-blue.svg)](http://robotology.github.io/robot-testing-framework/documentation/robottestingframework_plugin_example.html) +[![Language](https://img.shields.io/badge/Language-ADA-blue.svg)](https://github.com/robotology/robot-testing-framework/tree/master/examples/ada-plugin) +[![Language](https://img.shields.io/badge/Language-Python-blue.svg)](http://robotology.github.io/robot-testing-framework/documentation/robottestingframework_python_plugin_example.html) +[![Language](https://img.shields.io/badge/Language-Ruby-blue.svg)](http://robotology.github.io/robot-testing-framework/documentation/robottestingframework_ruby_plugin_example.html) +[![Language](https://img.shields.io/badge/Language-Lua-blue.svg)](http://robotology.github.io/robot-testing-framework/documentation/robottestingframework_lua_plugin_example.html) @@ -47,8 +47,8 @@ internal version which is delivered with the Robot Testing Framework. - **On Linux/Mac:** The installation is easy, straightforward and uses the CMake build system. ``` - $ git clone https://github.com/robotology/robot-testing.git - $ cd robot-testing + $ git clone https://github.com/robotology/robot-testing-framework.git + $ cd robot-testing-framework $ mkdir build; cd build $ cmake ../; make $ make install # Optional! @@ -58,8 +58,8 @@ internal version which is delivered with the Robot Testing Framework. build system. Get [CMake for windows](https://cmake.org/download/) if you have not yet installed. - Then simply run the CMake and, set the project (robot-testing) root folder and - the desired build folder. + Then simply run the CMake and, set the project (robot-testing-framework) root + folder and the desired build folder. Configure and generate project solution for your favorite IDE (e.g. Visual Studio 17). Then open the solution from your IDE and build the project. @@ -116,7 +116,7 @@ Tutorials and Examples Documentation ------------- * [*See Doxygen generated documentation*](http://robotology.gitlab.io/docs/rtf/master/index.html) -* [*See Robot Testing Framework website*](http://robotology.github.io/robot-testing/index.html) +* [*See Robot Testing Framework website*](http://robotology.github.io/robot-testing-framework/index.html) Authors ------- diff --git a/doc/lua_plugin_example.dox b/doc/lua_plugin_example.dox index 21efe731..6c5cc6ac 100644 --- a/doc/lua_plugin_example.dox +++ b/doc/lua_plugin_example.dox @@ -50,7 +50,7 @@ After installing the Lua development package, you need to enable the Lua plug-in system in the Robot Testing Framework and recompile it: \verbatim - $ cd robot-testing/build + $ cd robot-testing-framework/build $ cmake ../ -DENABLE_LUA_PLUGIN=ON \endverbatim diff --git a/doc/main.dox b/doc/main.dox index e5703639..2b59ce46 100644 --- a/doc/main.dox +++ b/doc/main.dox @@ -60,13 +60,13 @@ Robot Testing Framework build system check for the installation of TinyXml and, in case, it cannot find any installed version of TinyXml library, it uses the internal version which is delivered with the Robot Testing Framework. The source code of the Robot Testing Framework is vailable at -https://github.com/robotology/robot-testing. +https://github.com/robotology/robot-testing-framework. \subsection compile Compile and Build The installation is easy, straightforward and uses \c CMake building system. \verbatim - $ git clone https://github.com/robotology/robot-testing.git - $ cd robot-testing + $ git clone https://github.com/robotology/robot-testing-framework.git + $ cd robot-testing-framework $ mkdir build; cd build $ cmake ../; make \endverbatim diff --git a/doc/python_plugin_example.dox b/doc/python_plugin_example.dox index 64392a32..a7a2e0ac 100644 --- a/doc/python_plugin_example.dox +++ b/doc/python_plugin_example.dox @@ -50,7 +50,7 @@ After installing the Python development package, you need to enable the Python plug-in system in the Robot Testing Framework and recompile it: \verbatim - $ cd robot-testing/build + $ cd robot-testing-framework/build $ cmake ../ -DENABLE_PYTHON_PLUGIN=ON \endverbatim diff --git a/doc/release/v1_4_0.md b/doc/release/v1_4_0.md index f9f7b43b..6bef1688 100644 --- a/doc/release/v1_4_0.md +++ b/doc/release/v1_4_0.md @@ -17,7 +17,7 @@ Important Changes static libraries, using the [`BUILD_SHARED_LIBS`](https://cmake.org/cmake/help/v3.5/variable/BUILD_SHARED_LIBS.html) CMake variable. For RTF, we set the default value of `BUILD_SHARED_LIBS` to ON. Before this release, Windows compilation was only supported if RTF libraries were compiled - as static libraries, while now also on Windows by default libraries are compiled as shared ( https://github.com/robotology/robot-testing/pull/85 ). + as static libraries, while now also on Windows by default libraries are compiled as shared ( https://github.com/robotology/robot-testing-framework/pull/85 ). ### Libraries diff --git a/doc/release/v1_4_1.md b/doc/release/v1_4_1.md index e794aaef..9b0289e2 100644 --- a/doc/release/v1_4_1.md +++ b/doc/release/v1_4_1.md @@ -5,4 +5,4 @@ Bug Fixes --------- * Restore (but deprecated) backward compatibility with `rtf/TestSuit.h` header - and with the `RTF::TestSuit` class ( https://github.com/robotology/robot-testing/pull/97 ). + and with the `RTF::TestSuit` class ( https://github.com/robotology/robot-testing-framework/pull/97 ). diff --git a/doc/release/v1_6_0.md b/doc/release/v1_6_0.md index b18685e2..a09a253f 100644 --- a/doc/release/v1_6_0.md +++ b/doc/release/v1_6_0.md @@ -4,5 +4,5 @@ Robot Testing Framework 1.6.0 (2018-9-09) Release Notes {#v1_6_0} Important Changes ----------------- -* Visual Studio 2013 is no longer supported, due to the use of constexpr in VOCAB4 macro ( https://github.com/robotology/robot-testing/pull/98 ). +* Visual Studio 2013 is no longer supported, due to the use of constexpr in VOCAB4 macro ( https://github.com/robotology/robot-testing-framework/pull/98 ). diff --git a/doc/ruby_plugin_example.dox b/doc/ruby_plugin_example.dox index b4ae6d9d..9b35fb84 100644 --- a/doc/ruby_plugin_example.dox +++ b/doc/ruby_plugin_example.dox @@ -51,7 +51,7 @@ After installing the Ruby development package, you need to enable the Ruby plug-in system in the Robot Testing Framework and recompile it: \verbatim - $ cd robot-testing/build + $ cd robot-testing-framework/build $ cmake ../ -DENABLE_RUBY_PLUGIN=ON \endverbatim