From 58bd1e83b4e24eaab3cf18deb635a057d6bfefb7 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 5 Aug 2017 00:33:03 +0300 Subject: Renamed test dir to avoid duplicate numbers. --- test cases/common/157 dotinclude/dotproc.c | 10 ---------- test cases/common/157 dotinclude/meson.build | 5 ----- test cases/common/157 dotinclude/stdio.h | 6 ------ test cases/common/158 dotinclude/dotproc.c | 10 ++++++++++ test cases/common/158 dotinclude/meson.build | 5 +++++ test cases/common/158 dotinclude/stdio.h | 6 ++++++ 6 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 test cases/common/157 dotinclude/dotproc.c delete mode 100644 test cases/common/157 dotinclude/meson.build delete mode 100644 test cases/common/157 dotinclude/stdio.h create mode 100644 test cases/common/158 dotinclude/dotproc.c create mode 100644 test cases/common/158 dotinclude/meson.build create mode 100644 test cases/common/158 dotinclude/stdio.h diff --git a/test cases/common/157 dotinclude/dotproc.c b/test cases/common/157 dotinclude/dotproc.c deleted file mode 100644 index 5e65f7b..0000000 --- a/test cases/common/157 dotinclude/dotproc.c +++ /dev/null @@ -1,10 +0,0 @@ -#include"stdio.h" - -#ifndef WRAPPER_INCLUDED -#error The wrapper stdio.h was not included. -#endif - -int main(int argc, char **argv) { - printf("Eventually I got printed.\n"); - return 0; -} diff --git a/test cases/common/157 dotinclude/meson.build b/test cases/common/157 dotinclude/meson.build deleted file mode 100644 index e0c2cd7..0000000 --- a/test cases/common/157 dotinclude/meson.build +++ /dev/null @@ -1,5 +0,0 @@ -project('dotinclude', 'c') - -executable('dotproc', 'dotproc.c', - implicit_include_directories : false) - diff --git a/test cases/common/157 dotinclude/stdio.h b/test cases/common/157 dotinclude/stdio.h deleted file mode 100644 index b6bd09f..0000000 --- a/test cases/common/157 dotinclude/stdio.h +++ /dev/null @@ -1,6 +0,0 @@ -// There is no #pragma once because we _want_ to cause an eternal loop -// if this wrapper invokes itself. - -#define WRAPPER_INCLUDED - -#include diff --git a/test cases/common/158 dotinclude/dotproc.c b/test cases/common/158 dotinclude/dotproc.c new file mode 100644 index 0000000..5e65f7b --- /dev/null +++ b/test cases/common/158 dotinclude/dotproc.c @@ -0,0 +1,10 @@ +#include"stdio.h" + +#ifndef WRAPPER_INCLUDED +#error The wrapper stdio.h was not included. +#endif + +int main(int argc, char **argv) { + printf("Eventually I got printed.\n"); + return 0; +} diff --git a/test cases/common/158 dotinclude/meson.build b/test cases/common/158 dotinclude/meson.build new file mode 100644 index 0000000..e0c2cd7 --- /dev/null +++ b/test cases/common/158 dotinclude/meson.build @@ -0,0 +1,5 @@ +project('dotinclude', 'c') + +executable('dotproc', 'dotproc.c', + implicit_include_directories : false) + diff --git a/test cases/common/158 dotinclude/stdio.h b/test cases/common/158 dotinclude/stdio.h new file mode 100644 index 0000000..b6bd09f --- /dev/null +++ b/test cases/common/158 dotinclude/stdio.h @@ -0,0 +1,6 @@ +// There is no #pragma once because we _want_ to cause an eternal loop +// if this wrapper invokes itself. + +#define WRAPPER_INCLUDED + +#include -- cgit v1.1