summaryrefslogtreecommitdiff
path: root/test cases/common/60 array methods
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-08-03 01:37:46 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2019-08-03 02:29:44 +0300
commitf39600647d9fe95c91c80b0cc7e7a8c28524e778 (patch)
tree99f13e04856ec46b064bd0126de1a00b226914f5 /test cases/common/60 array methods
parent2e6df380f15643630f984311d8ab9ec693aba223 (diff)
downloadmeson-f39600647d9fe95c91c80b0cc7e7a8c28524e778.tar.gz
Condense test directory names.
Diffstat (limited to 'test cases/common/60 array methods')
-rw-r--r--test cases/common/60 array methods/meson.build46
1 files changed, 0 insertions, 46 deletions
diff --git a/test cases/common/60 array methods/meson.build b/test cases/common/60 array methods/meson.build
deleted file mode 100644
index cdda41dbf..000000000
--- a/test cases/common/60 array methods/meson.build
+++ /dev/null
@@ -1,46 +0,0 @@
-project('array methods', 'c')
-
-empty = []
-one = ['abc']
-two = ['def', 'ghi']
-combined = [empty, one, two]
-
-if empty.contains('abc')
- error('Empty is not empty.')
-endif
-
-if one.contains('a')
- error('One claims to contain a')
-endif
-
-if not one.contains('abc')
- error('One claims to not contain abc.')
-endif
-
-if one.contains('abcd')
- error('One claims to contain abcd.')
-endif
-
-if two.contains('abc')
- error('Two claims to contain abc.')
-endif
-
-if not two.contains('def')
- error('Two claims not to contain def.')
-endif
-
-if not two.contains('ghi')
- error('Two claims not to contain ghi.')
-endif
-
-if two.contains('defg')
- error('Two claims to contain defg.')
-endif
-
-if not combined.contains('abc')
- error('Combined claims not to contain abc.')
-endif
-
-if not combined.contains('ghi')
- error('Combined claims not to contain ghi.')
-endif