diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-11 20:21:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-11 20:21:00 +0300 |
commit | b9dbeb2c2a136fe88db5fa41e15a8b44866854ce (patch) | |
tree | 56c8c86540b50d0bc7f110a451cd8fc15b1caff8 /tools | |
parent | d794f1a315af407da245f078e24d497d650595cc (diff) | |
download | deheader-b9dbeb2c2a136fe88db5fa41e15a8b44866854ce.tar.gz deheader-b9dbeb2c2a136fe88db5fa41e15a8b44866854ce.tar.bz2 deheader-b9dbeb2c2a136fe88db5fa41e15a8b44866854ce.tar.xz deheader-b9dbeb2c2a136fe88db5fa41e15a8b44866854ce.zip |
Add more ci tests. Fix old tests.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ci/samples/include2.h | 6 | ||||
-rw-r--r-- | tools/ci/samples/include3.h | 6 | ||||
-rw-r--r-- | tools/ci/samples/test3.h | 6 | ||||
-rw-r--r-- | tools/ci/samples/test4.cpp | 11 | ||||
-rw-r--r-- | tools/ci/samples/test4.h | 6 | ||||
-rw-r--r-- | tools/ci/samples/test5.h | 8 |
6 files changed, 40 insertions, 3 deletions
diff --git a/tools/ci/samples/include2.h b/tools/ci/samples/include2.h new file mode 100644 index 0000000..f0edb51 --- /dev/null +++ b/tools/ci/samples/include2.h @@ -0,0 +1,6 @@ +#ifndef INCLUDE2 +#define INCLUDE2 + +void function2(); + +#endif // INCLUDE2
\ No newline at end of file diff --git a/tools/ci/samples/include3.h b/tools/ci/samples/include3.h new file mode 100644 index 0000000..fdc006e --- /dev/null +++ b/tools/ci/samples/include3.h @@ -0,0 +1,6 @@ +#ifndef INCLUDE3 +#define INCLUDE3 + +void function3(); + +#endif // INCLUDE3
\ No newline at end of file diff --git a/tools/ci/samples/test3.h b/tools/ci/samples/test3.h index 4cc2335..7f2669e 100644 --- a/tools/ci/samples/test3.h +++ b/tools/ci/samples/test3.h @@ -1,6 +1,6 @@ -#ifndef TEST2 -#define TEST2 +#ifndef TEST3 +#define TEST3 int function1(); -#endif // TEST2
\ No newline at end of file +#endif // TEST3
\ No newline at end of file diff --git a/tools/ci/samples/test4.cpp b/tools/ci/samples/test4.cpp new file mode 100644 index 0000000..340fdda --- /dev/null +++ b/tools/ci/samples/test4.cpp @@ -0,0 +1,11 @@ +#include "test4.h" + +#include "include1.h" + +int function1() +{ + return 0; +} + +#include "include2.h" + diff --git a/tools/ci/samples/test4.h b/tools/ci/samples/test4.h new file mode 100644 index 0000000..f578ad2 --- /dev/null +++ b/tools/ci/samples/test4.h @@ -0,0 +1,6 @@ +#ifndef TEST4 +#define TEST4 + +int function1(); + +#endif // TEST4
\ No newline at end of file diff --git a/tools/ci/samples/test5.h b/tools/ci/samples/test5.h new file mode 100644 index 0000000..d7b9143 --- /dev/null +++ b/tools/ci/samples/test5.h @@ -0,0 +1,8 @@ +#ifndef TEST5 +#define TEST5 + +#include "include1.h" + +int function1(); + +#endif // TEST5
\ No newline at end of file |