Skip to content

Commit 1b02c60

Browse files
author
sangelovic
committed
Rename test subdirectory to tests for higher consistency with OSS standards
1 parent 981206f commit 1b02c60

37 files changed

+6
-6
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ build/
77
.deps/
88
.dirstamp
99
.libs/
10-
test/libsdbus-c++_unittests
11-
test/libsdbus-c++_integrationtests
12-
test/run-test-on-device.sh
10+
tests/libsdbus-c++_unittests
11+
tests/libsdbus-c++_integrationtests
12+
tests/run-test-on-device.sh
1313

1414
#eclipse
1515
.cproject

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ option(BUILD_TESTS "Build and install tests (default OFF)" OFF)
121121

122122
if(BUILD_TESTS)
123123
enable_testing()
124-
add_subdirectory("${CMAKE_SOURCE_DIR}/test")
124+
add_subdirectory("${CMAKE_SOURCE_DIR}/tests")
125125
endif()
126126

127127
#----------------------------------

docs/using-sdbus-c++.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ sdbus-c++ stub generator can generate stub code for server-side async methods. W
882882
</node>
883883
```
884884

885-
For a real example of a server-side asynchronous D-Bus method, please look at sdbus-c++ [stress tests](/test/stresstests).
885+
For a real example of a server-side asynchronous D-Bus method, please look at sdbus-c++ [stress tests](/tests/stresstests).
886886

887887
Asynchronous client-side methods
888888
--------------------------------
@@ -999,7 +999,7 @@ For each client-side async method, a corresponding `on<MethodName>Reply` pure vi
999999

10001000
So in the specific example above, the stub generator will generate a `Concatenator_proxy` class similar to one shown in a [dedicated section above](#concatenator-client-glueh), with the difference that it will also generate an additional `virtual void onConcatenateReply(const sdbus::Error* error, const std::string& concatenatedString);` method, which we shall override in derived `ConcatenatorProxy`.
10011001

1002-
For a real example of a client-side asynchronous D-Bus method, please look at sdbus-c++ [stress tests](/test/stresstests).
1002+
For a real example of a client-side asynchronous D-Bus method, please look at sdbus-c++ [stress tests](/tests/stresstests).
10031003

10041004
Using D-Bus properties
10051005
----------------------
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)