commit b06b11cbb5d09c6d091551e39767cd3316f88376 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Oct 5 11:57:37 2021 -0300 Fixing failing unit test commit fe2a43a19b2a16a9aedd9e95e71e672935ecaeb1 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Oct 5 11:54:01 2021 -0300 Adding endpoints and updating documentation commit 46e0deeefb8b06291ae5e2d6b8ec4749c5b0ea6f Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Oct 5 11:49:43 2021 -0300 Completing unit tests and relevant fixes commit e0569f370624844feee6aae4708bfe683f4156cf Author: Ian Roddis <gitlab@ie2r.com> Date: Mon Oct 4 17:30:59 2021 -0300 Adding in gcc tsan for debug builds to help with race conditions, fixing many of those, and fixing really crummy assumption about how futures worked that will speed up task execution by a ton. commit c748a4f592e1ada5546908be5281d04f4749539d Author: Ian Roddis <gitlab@ie2r.com> Date: Mon Oct 4 10:14:43 2021 -0300 Checkpointing work that seems to have resolved the race condition commit 7a79f2943e0d50545d976a28b4b379340a90dded Author: Ian Roddis <gitlab@ie2r.com> Date: Wed Sep 29 09:27:07 2021 -0300 Completing the rough-in for DAG killing / pausing / resuming commit 4cf8d81d5f6fcf4a7dd83d8fca3e23f153aa8acb Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 14:53:50 2021 -0300 Adding dagrunner unit tests, adding a resetRunning method to resume commit 54e2c1f9f5e7d5b339d71be024e0e390c4d2bf61 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 14:45:57 2021 -0300 Refactoring runDAG into DAGRunner commit 682be7a11e2fae850e1bc3e207628d2335768c2b Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 14:34:43 2021 -0300 Adding DAGRunner class to replace Utilities::runDAG, making Slurm cancellation rc agree with SIGKILL commit 4171b3a6998791abfc71b04f8de1ae93c4f90a78 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 14:14:17 2021 -0300 Adding unit tests for stopping jobs to slurm commit dc0b1ff26a5d98471164132d35bb8a552cc75ff8 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 14:04:15 2021 -0300 Adding in stop method for task executors commit e752b44f55113be54392bcbb5c3d6f251d673cfa Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 12:32:06 2021 -0300 Adding additional tests for loggers commit f0773d5a84a422738fc17c9277a2b735a21a3d04 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 12:29:21 2021 -0300 Unit tests pass commit 993ff2810de2d53dc6a59ab53d620fecf152d4a0 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 12:24:34 2021 -0300 Adding handling for new routes, still need to add tests for new routes commit 676623b14e45759872a2dbcbc98f6a744e022a71 Author: Ian Roddis <gitlab@ie2r.com> Date: Tue Sep 28 12:12:43 2021 -0300 Adding handling for new routes, still need to add tests for new routes commit b9edb6ba291eb064f4c459a308ea6912fba9fa02 Author: Ian Roddis <gitlab@ie2r.com> Date: Mon Sep 27 11:59:14 2021 -0300 Defining new endpoints, fixing dag resumption code, adding PAUSED state, refactoring DAGSpec and adding deserializer
19 lines
515 B
CMake
19 lines
515 B
CMake
project(tests)
|
|
add_executable(tests main.cpp
|
|
# unit tests
|
|
unit_dag.cpp
|
|
unit_dagrunner.cpp
|
|
unit_dagrun_loggers.cpp
|
|
unit_executor_forkingexecutor.cpp
|
|
unit_executor_slurmexecutor.cpp
|
|
unit_serialization.cpp
|
|
unit_server.cpp
|
|
unit_threadpool.cpp
|
|
unit_utilities.cpp
|
|
# integration tests
|
|
int_basic.cpp
|
|
# Performance checks
|
|
perf_dag.cpp
|
|
)
|
|
target_link_libraries(tests libdaggy stdc++fs Catch2::Catch2 curl)
|