Skip to content

Commit 73eda87

Browse files
committed
fixed includes
1 parent f4b98ae commit 73eda87

8 files changed

Lines changed: 13 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ the [CAPIO-CL Docs](https://capio.hpc4ai.it/docs/coord-language/) for details.
5858

5959
To launch your workflow with capio you can follow two routes:
6060

61-
#### A) Use `capiorun` for simplfied operations
61+
#### A) Use `capiorun` for simplified operations
6262

6363
You can simplify the execution of workflow steps with CAPIO using the `capiorun` utility. See the
6464
[`capiorun` documentation](capiorun/readme.md) for usage and examples. `capiorun` provides an easier way to manage

tests/multinode/backend/src/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include <capio/utils.h>
12
#include <gtest/gtest.h>
23
#include <thread>
34

tests/multinode/integration/src/common.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef COMMON_HPP
22
#define COMMON_HPP
3-
3+
#include <capio/utils.h>
44
#include <gtest/gtest.h>
55

66
#include <assert.h>

tests/unit/MemoryFiles/src/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include <capio/utils.h>
12
#include <gtest/gtest.h>
23

34
#include <cstdint>

tests/unit/posix/src/realpath.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#include <gtest/gtest.h>
2-
1+
#include <fcntl.h>
32
#include <filesystem>
3+
#include <gtest/gtest.h>
44

5-
#include <fcntl.h>
5+
#include <capio/utils.h>
66

77
#include "utils/filesystem.hpp"
88

tests/unit/server/src/CapioCacheSPSCQueueTests.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef CAPIOCACHESPSCQUEUETESTS_HPP
22
#define CAPIOCACHESPSCQUEUETESTS_HPP
33

4+
#include <thread>
5+
46
#include "../common/capio/response_queue.hpp"
57
#include "../posix/utils/env.hpp"
68
#include "../posix/utils/filesystem.hpp"

tests/unit/server/src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "capio/constants.hpp"
1+
#include <capio/constants.hpp>
2+
#include <capio/utils.h>
23
#include <gtest/gtest.h>
3-
#include <thread>
44

55
std::string workflow_name = CAPIO_DEFAULT_WORKFLOW_NAME;
66

tests/unit/syscall/src/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#include <capio/utils.h>
2+
13
#include "capio/constants.hpp"
24
#include <gtest/gtest.h>
35

0 commit comments

Comments
 (0)