Subject | Hash | Author | Date (UTC) |
---|---|---|---|
modify while traverse | ed70186f19dea7c92a9b98c0df7aec4973a37b98 | mucbuc | 2019-11-11 15:10:58 |
on test | b8fc778d7056fb108fbdd7318f294e2b340faeeb | mucbuc | 2019-11-11 15:01:22 |
emit with args | a40831a0902f0dfa35d8f5e314b1e5b21955eae7 | mucbuc | 2019-11-11 14:40:46 |
emit with arg | 2cfab1f1668896ac6d58e868b8ee6d41a79dc447 | mucbuc | 2019-11-11 02:45:45 |
check dispatch logic | 5b40033514e610292c25336b821829675c8f7edd | mucbuc | 2019-11-11 02:35:18 |
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 |
File | Lines added | Lines deleted |
---|---|---|
test/modify_while_traversal.json | 1 | 1 |
test/src/modify_while_traversal.cpp | 5 | 7 |
test/tests.json | 2 | 1 |
File test/modify_while_traversal.json copied from file test/emit_once.json (similarity 69%) (mode: 100644) (index e7915a7..c630cb2) | |||
3 | 3 | "lib/ohm/ohm.json" | "lib/ohm/ohm.json" |
4 | 4 | ], | ], |
5 | 5 | "sources": [ | "sources": [ |
6 | "src/emit_once.cpp", | ||
6 | "src/modify_while_traversal.cpp", | ||
7 | 7 | "src/emitter_fwd.h" | "src/emitter_fwd.h" |
8 | 8 | ] | ] |
9 | 9 | } | } |
File test/src/modify_while_traversal.cpp renamed from test/src/modify_while_traversal.h (similarity 92%) (mode: 100644) (index 27d56db..68b8538) | |||
1 | #include <tmp/src/test.h> | ||
2 | 1 | ||
3 | 2 | #include <iostream> | #include <iostream> |
4 | 3 | #include <vector> | #include <vector> |
5 | 4 | ||
5 | #include <tmp/src/test.h> | ||
6 | #include <lib/ohm/src/quemitter.h> | ||
7 | |||
6 | 8 | using namespace std; | using namespace std; |
7 | 9 | using namespace om636; | using namespace om636; |
8 | 10 | ///////////////////////////////////////////////////////////////// | ///////////////////////////////////////////////////////////////// |
... | ... | void check_modify_while_traversal() | |
67 | 69 | FOOTER; | FOOTER; |
68 | 70 | } | } |
69 | 71 | ||
70 | |||
71 | #include <tmp/src/test.h> | ||
72 | #include <lib/ohm/src/emitter.h> | ||
73 | |||
74 | 72 | template <class T, class U> | template <class T, class U> |
75 | 73 | using QueuedEmitter = om636::control::Quemitter<T, U>; | using QueuedEmitter = om636::control::Quemitter<T, U>; |
76 | 74 | ||
... | ... | int main() | |
78 | 76 | { | { |
79 | 77 | using namespace std; | using namespace std; |
80 | 78 | ||
81 | test_emitter<om636::control::Emitter>(); | ||
82 | test_emitter<QueuedEmitter>(); | ||
79 | check_modify_while_traversal<om636::control::Emitter>(); | ||
80 | check_modify_while_traversal<QueuedEmitter>(); | ||
83 | 81 | ||
84 | 82 | return 0; | return 0; |
85 | 83 | } | } |
File test/tests.json changed (mode: 100644) (index 0a39e2c..3c1c301) | |||
7 | 7 | "emit_while_emit.json", | "emit_while_emit.json", |
8 | 8 | "emit_with_arg.json", | "emit_with_arg.json", |
9 | 9 | "emit_with_args.json", | "emit_with_args.json", |
10 | "on.json" | ||
10 | "on.json", | ||
11 | "modify_while_traversal.json" | ||
11 | 12 | ] } | ] } |