Skip to content

Commit

Permalink
robot-testing -> robot-testing-framework
Browse files Browse the repository at this point in the history
  • Loading branch information
drdanz committed May 16, 2019
1 parent c0997e3 commit c48bb3d
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -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
Expand Down
28 changes: 14 additions & 14 deletions 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)



Expand Down Expand Up @@ -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!
Expand All @@ -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.
Expand Down Expand Up @@ -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
-------
Expand Down
2 changes: 1 addition & 1 deletion doc/lua_plugin_example.dox
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions doc/main.dox
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/python_plugin_example.dox
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion doc/release/v1_4_0.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion doc/release/v1_4_1.md
Expand Up @@ -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 ).
2 changes: 1 addition & 1 deletion doc/release/v1_6_0.md
Expand Up @@ -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 ).

2 changes: 1 addition & 1 deletion doc/ruby_plugin_example.dox
Expand Up @@ -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

Expand Down

0 comments on commit c48bb3d

Please sign in to comment.