summaryrefslogtreecommitdiff
path: root/test cases/common/64 array arithmetic
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/64 array arithmetic')
-rw-r--r--test cases/common/64 array arithmetic/meson.build15
1 files changed, 0 insertions, 15 deletions
diff --git a/test cases/common/64 array arithmetic/meson.build b/test cases/common/64 array arithmetic/meson.build
deleted file mode 100644
index 8b8785afc..000000000
--- a/test cases/common/64 array arithmetic/meson.build
+++ /dev/null
@@ -1,15 +0,0 @@
-project('array arithmetic', 'c')
-
-array1 = ['foo', 'bar']
-array2 = ['qux', 'baz']
-
-if array1 + array2 != ['foo', 'bar', 'qux', 'baz']
- error('Array concatenation is broken')
-endif
-if array2 + array1 != ['qux', 'baz', 'foo', 'bar']
- error('Array concatenation is broken')
-endif
-
-if array1 + array1 + array1 != ['foo', 'bar', 'foo', 'bar', 'foo', 'bar']
- error('Many-array concatenation is broken')
-endif