From e75e3976facda7de244fbb9a02eebf0d043ea1c8 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 26 Apr 2021 16:52:13 +0300 Subject: Condense test directory names. --- test cases/common/64 array arithmetic/meson.build | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 test cases/common/64 array arithmetic/meson.build (limited to 'test cases/common/64 array arithmetic') 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 -- cgit v1.2.3