summaryrefslogtreecommitdiff
path: root/test cases/common/18 array
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/18 array')
-rw-r--r--test cases/common/18 array/func.c1
-rw-r--r--test cases/common/18 array/meson.build8
-rw-r--r--test cases/common/18 array/prog.c3
3 files changed, 0 insertions, 12 deletions
diff --git a/test cases/common/18 array/func.c b/test cases/common/18 array/func.c
deleted file mode 100644
index a324dca21..000000000
--- a/test cases/common/18 array/func.c
+++ /dev/null
@@ -1 +0,0 @@
-int func(void) { return 0; }
diff --git a/test cases/common/18 array/meson.build b/test cases/common/18 array/meson.build
deleted file mode 100644
index 0d1737488..000000000
--- a/test cases/common/18 array/meson.build
+++ /dev/null
@@ -1,8 +0,0 @@
-project('array test', 'c')
-
-arr = [
- 'func.c',
- 'prog.c']
-
-exe = executable('prog', sources : arr)
-test('arr test', exe)
diff --git a/test cases/common/18 array/prog.c b/test cases/common/18 array/prog.c
deleted file mode 100644
index f794e1b1f..000000000
--- a/test cases/common/18 array/prog.c
+++ /dev/null
@@ -1,3 +0,0 @@
-extern int func(void);
-
-int main(void) { return func(); }