d38d16ade9
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 |
||
---|---|---|
.. | ||
color | ||
core | ||
data | ||
datasource | ||
font | ||
geometry | ||
imaging | ||
map | ||
numerics | ||
pixel | ||
projection | ||
renderer | ||
serialization | ||
sql | ||
svg | ||
symbolizer | ||
text | ||
util | ||
vertex_adapter | ||
README.md | ||
run.cpp | ||
valgrind.supp |
C++ unit tests
Building
python scons/scons.py test/unit/run
Running
./test/unit/run