mirror of
https://github.com/mapnik/mapnik.git
synced 2025-09-16 23:02:53 +02:00
![]() Two of the original checks were not testing what they were supposed to test, because the result of eval didn't depend on correct parsing: eval("not true or not true") correct parse: ((not true) or (not true)) == false incorrect parse: (not (true or (not true))) == false eval("not false and not false") correct parse: ((not false) and (not false)) == true incorrect parse: (not (false and (not false))) == true |
||
---|---|---|
.. | ||
box2d_test.cpp | ||
comparison_test.cpp | ||
conversions_test.cpp | ||
copy_move_test.cpp | ||
exceptions_test.cpp | ||
expressions_test.cpp | ||
params_test.cpp | ||
transform_expressions_test.cpp | ||
value_test.cpp |