Renaming Executor to TaskEecutor

This commit is contained in:
Ian Roddis
2021-08-01 11:28:30 -03:00
parent 0349a5109b
commit f2f3d22574
9 changed files with 18 additions and 16 deletions

View File

@@ -1,12 +1,12 @@
#include <iostream>
#include <filesystem>
#include "daggy/executors/ForkingExecutor.hpp"
#include "daggy/executors/ForkingTaskExecutor.hpp"
#include "catch.hpp"
TEST_CASE("Basic Execution", "[forking_executor]") {
daggy::executor::ForkingExecutor ex;
daggy::executor::ForkingTaskExecutor ex;
SECTION("Simple Run") {
std::vector<std::string> cmd{"/usr/bin/echo", "abc", "123"};