List of commits:
Subject Hash Author Date (UTC)
another test 718946ff7621bab0d8242e19ab423626c41a0b97 mucbuc 2019-11-11 02:20:42
emit once d3d244834caec7f581b254957c22b8f1c2af5321 mucbuc 2019-11-11 00:31:05
brreaking apart tests 0fa426d441993960bb8752d646744c748f2767f4 mucbuc 2019-11-11 00:13:05
trimmed 765e78aeba5eab8cd4ab933792327b393322c56a mucbuc 2019-11-10 22:39:52
fix convcurent test 11773096bd273e10835aa534f8f45ed2f25b2af6 mucbuc 2019-11-09 20:10:17
break appat e70933ddd90fcc006e0456cb60b096144e17b8bf mucbuc 2019-11-09 19:52:07
use paramete pack 04b380271051ac0f8a18135fde01a80b8e6b67ef mucbuc 2019-11-05 04:48:58
cleanup 69d0ce30002b97c5a2da1309677e0078b24f5615 mucbuc 2019-11-03 00:31:22
fix compile time error fbc1c35e2389d9fffebe94808385ded809b4061a mucbuc 2019-11-03 00:30:41
rm dynamo 10a004cc3ffda178fe3c592d1e32e5a39078adff mucbuc 2019-11-03 00:07:17
point to aws code commit fdfa4593d13b1fadcbed55b91b37239dfabc0941 mucbuc 2019-11-02 23:57:24
cleanup template stuff 4ebc0945d2e8cf2c7a1f75d3dab125b83f76078d mucbuc 2019-11-02 21:09:51
more cleanup bfbe00170ae67ea7e8e1cb23e4e352b18188b5a9 mucbuc 2019-11-02 21:01:10
delete explicit template stuff 1a43665b79bb3df8e28cb7be2d460cbec6cd6a0f mucbuc 2019-11-02 20:55:26
use parameter pack aaff690514d7543a66c285cf9214ebad55c6876e mucbuc 2019-11-02 20:49:43
builds d8412e21c450b8da35dc1f248cb713859bb40c26 mucbuc 2019-11-02 20:26:54
ignore test tmp 0c68fe48a97a80098e224875f1f7aa948a7c6a59 Ubuntu 2018-10-07 09:50:49
format code a919ca42b5f904d30d0791709d804f2e3cc1cc3a Ubuntu 2018-10-07 09:33:51
update dependencies b16e741737159394ba7b9337fe5ec1dba9823114 Ubuntu 2018-10-07 09:32:41
plusify 5521f5f65b89bdb2a848d3e497b1c591fe39c15e Ubuntu 2018-10-06 12:18:21
Commit 718946ff7621bab0d8242e19ab423626c41a0b97 - another test
Author: mucbuc
Author date (UTC): 2019-11-11 02:20
Committer name: mucbuc
Committer date (UTC): 2019-11-11 02:20
Parent(s): d3d244834caec7f581b254957c22b8f1c2af5321
Signer:
Signing key:
Signing status: N
Tree: 4d952388a9c79fa4798dbf18d5d55eaf36afb2bb
File Lines added Lines deleted
test/dispatch_logic.json 1 1
test/src/dispatch_logic.cpp 5 6
test/tests.json 2 1
File test/dispatch_logic.json copied from file test/emit_once.json (similarity 74%) (mode: 100644) (index e7915a7..40df4a5)
3 3 "lib/ohm/ohm.json" "lib/ohm/ohm.json"
4 4 ], ],
5 5 "sources": [ "sources": [
6 "src/emit_once.cpp",
6 "src/dispatch_logic.cpp",
7 7 "src/emitter_fwd.h" "src/emitter_fwd.h"
8 8 ] ]
9 9 } }
File test/src/dispatch_logic.cpp renamed from test/src/dispatch_logic.h (similarity 91%) (mode: 100644) (index 0ae467a..c05452e)
1 #include <tmp/src/test.h>
2
3 1 #include <iostream> #include <iostream>
4 2 #include <vector> #include <vector>
3 #include <tmp/src/test.h>
4 #include <lib/ohm/src/emitter.h>
5 #include <lib/ohm/src/quemitter.h>
5 6
6 7 using namespace std; using namespace std;
7 8 using namespace om636; using namespace om636;
 
... ... void check_dispatch_logic()
52 53
53 54 FOOTER; FOOTER;
54 55 } }
55 #include <tmp/src/test.h>
56 #include <lib/ohm/src/emitter.h>
57 56
58 57 template <class T, class U> template <class T, class U>
59 58 using QueuedEmitter = om636::control::Quemitter<T, U>; using QueuedEmitter = om636::control::Quemitter<T, U>;
 
... ... int main()
62 61 { {
63 62 using namespace std; using namespace std;
64 63
65 test_emitter<om636::control::Emitter>();
66 test_emitter<QueuedEmitter>();
64 check_dispatch_logic<om636::control::Emitter>();
65 check_dispatch_logic<QueuedEmitter>();
67 66
68 67 return 0; return 0;
69 68 } }
File test/tests.json changed (mode: 100644) (index d79b278..4cee1bf)
2 2 "tests":[ "tests":[
3 3 "concurrent.json", "concurrent.json",
4 4 "agent_life_time.json", "agent_life_time.json",
5 "emit_once.json"
5 "emit_once.json",
6 "dispatch_logic.json"
6 7 ] } ] }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mucbuc/ohm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mucbuc/ohm

Clone this repository using git:
git clone git://git.rocketgit.com/user/mucbuc/ohm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main