The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
project('testcase clause') |
|
|
|
# To make sure unreachable code is not executed. |
|
unreachable = true |
|
|
|
# Verify assertion exception gets catched and dropped. |
|
testcase expect_error('Assert failed: false') |
|
assert(false) |
|
unreachable = false |
|
endtestcase |
|
assert(unreachable) |
|
|
|
# The inner testcase raises an exception because it did not receive the expected |
|
# error message. The outer testcase catches the inner testcase exception and |
|
# drop it. |
|
testcase expect_error('Expecting error \'something\' but got \'Assert failed: false\'') |
|
testcase expect_error('something') |
|
assert(false) |
|
unreachable = false |
|
endtestcase |
|
unreachable = false |
|
endtestcase |
|
assert(unreachable) |
|
|
|
# The inner testcase raises an exception because it did not receive an |
|
# exception. The outer testcase catches the inner testcase exception and |
|
# drop it. |
|
testcase expect_error('Expecting an error but code block succeeded') |
|
testcase expect_error('something') |
|
reached = true |
|
endtestcase |
|
unreachable = false |
|
endtestcase |
|
assert(reached) |
|
assert(unreachable) |
|
|
|
message('all good')
|
|
|