aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test cases/common/69 string arithmetic/meson.build12
1 files changed, 4 insertions, 8 deletions
diff --git a/test cases/common/69 string arithmetic/meson.build b/test cases/common/69 string arithmetic/meson.build
index f0e46e9..59567de 100644
--- a/test cases/common/69 string arithmetic/meson.build
+++ b/test cases/common/69 string arithmetic/meson.build
@@ -8,13 +8,9 @@ if 'foo' + 'bar' + 'baz' != 'foobarbaz'
error('Many-string concatenation is broken')
endif
-if 'foobar' + 5 != 'foobar5' or 5 + 'foobar' != '5foobar'
- error('String-number concatenation is broken')
-endif
+a = 'a'
+b = 'b'
-if (5 + 3) + 'foobar' != '8foobar'
- error('String-number addition then concatenation broken')
-endif
-if 5 + (3 + 'foobar') != '53foobar'
- error('String-number concatenation then addition broken')
+if a + b + 'c' != 'abc'
+ error('String concat with variables is broken.')
endif