-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update submodules to latest versions
* submodules/ocean v3.3.1(a991c41)...v3.5.5(1047765) (134 commits) > Merge tag v3.4.6 into v3.5.x > Merge tag v3.4.5 into v3.5.x > Fix DaemonApp.onSignal crash on unkown signal > Add missing imports in deprecated modules > Merge tag v3.4.4 into v3.5.x (...) * submodules/swarm v4.3.2(00fddf8)...v4.4.0(e4ab31c) (22 commits) > Time neo requests for which timing stats are configured > Add test for neo stats logging without request timing > Add facility to disable timing stats for specific requests in test nodes > Allow node implementations to turn off timing stats for some neo requests > Don't log timing stats for requests without timing info (...) * submodules/turtle v8.0.0(a319c42)...v8.2.1(b32db61) (18 commits) > Add a note to remove module ctor in v9.0.0 > Fix turtle import affecting unittests > Fix broken merge of --memcheck feature > Collect peak virtual memory usage of the app > Refactor TestedApplicationBase kill timer (...)
- Loading branch information
1 parent
0e6da84
commit 2b26a37
Showing
4 changed files
with
5 additions
and
4 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
Submodule swarm
updated
32 files
Submodule turtle
updated
26 files
+1 −0 | .gitignore | |
+8 −6 | .travis.yml | |
+1 −0 | Build.mak | |
+2 −0 | Config.mak | |
+0 −3 | Dockerfile.xenial | |
+1 −0 | beaver.Dockerfile | |
+0 −26 | ci/travis.sh | |
+2 −2 | example/daemon/main.d | |
+5 −0 | relnotes/makd.feature.md | |
+9 −0 | relnotes/stats.feature.md | |
+28 −4 | src/dummy_daemon/main.d | |
+19 −0 | src/turtle/application/Stats.d | |
+93 −0 | src/turtle/application/TestedDaemonApplication.d | |
+3 −3 | src/turtle/application/model/ExternalProcess.d | |
+81 −62 | src/turtle/application/model/TestedApplicationBase.d | |
+16 −0 | src/turtle/env/ControlSocket.d | |
+18 −12 | src/turtle/runner/Logging.d | |
+59 −19 | src/turtle/runner/Runner.d | |
+1 −1 | src/turtle/runner/actions/List.d | |
+1 −1 | src/turtle/runner/actions/RunAll.d | |
+1 −1 | src/turtle/runner/actions/RunOne.d | |
+63 −0 | src/turtle/runner/actions/RunTwiceCompareStats.d | |
+10 −0 | src/turtle/runner/internal/RunnerConfig.d | |
+1 −1 | submodules/beaver | |
+68 −0 | test/controlsocket/main.d | |
+9 −9 | test/order/main.d |