Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-18 Thread Vaclav Petras
Thanks, tests are back to 86%. http://fatra.cnr.ncsu.edu/grassgistests/reports_for_date-2014-11-18-08-00/report_for_nc_spm_08_grass7_nc/testsuites.html ___ grass-dev mailing list grass-dev@lists.osgeo.org

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Martin Landa
Hi, 2014-11-17 3:54 GMT+01:00 Vaclav Petras wenzesl...@gmail.com: I've also noticed that the documentation on server does not contain generated/standard flags (--), the flags are included when there is a short flag (-). I get the flags on my local machine with recent version. Was this

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Markus Metz
On Mon, Nov 17, 2014 at 3:54 AM, Vaclav Petras wenzesl...@gmail.com wrote: Hi all, something happened between r62745 (Saturday) and r62754 (Sunday) because tests are failing. Here are the changes in trunk:

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Pietro
On Mon, Nov 17, 2014 at 11:32 AM, Markus Metz markus.metz.gisw...@gmail.com wrote: BTW, the test suite does not run with Python 2.6 because import argparse fails, this module is new in Python 2.7. but can be installed: https://pypi.python.org/pypi/argparse Best regards Pietro

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Martin Landa
Hi, 2014-11-17 11:32 GMT+01:00 Markus Metz markus.metz.gisw...@gmail.com: G_tokenize() no longer removes leading spaces (it never removed trailing spaces), but G_parser() relied on that. G_tokenize() tokenizes a string, spaces can be removed with G_chop(), G_squeeze(), or G_strip(). Fixed in

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Vaclav Petras
On Mon, Nov 17, 2014 at 5:32 AM, Markus Metz markus.metz.gisw...@gmail.com wrote: BTW, the test suite does not run with Python 2.6 because import argparse fails, this module is new in Python 2.7. I know and I don't know if 2.6 support is feasible. A lot of unittest functions was added in 2.7,

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Markus Metz
On Mon, Nov 17, 2014 at 2:43 PM, Vaclav Petras wenzesl...@gmail.com wrote: On Mon, Nov 17, 2014 at 5:32 AM, Markus Metz markus.metz.gisw...@gmail.com wrote: BTW, the test suite does not run with Python 2.6 because import argparse fails, this module is new in Python 2.7. I know and I don't

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Vaclav Petras
On Mon, Nov 17, 2014 at 2:34 PM, Markus Metz markus.metz.gisw...@gmail.com wrote: But perhaps installing unittest2 and argparse is worth trying. Few changes will be required in gunittest too, mostly imports I hope. I will give it a try, argparse and unittest2 are available through the

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Markus Metz
On Mon, Nov 17, 2014 at 11:19 AM, Martin Landa landa.mar...@gmail.com wrote: Hi, 2014-11-17 3:54 GMT+01:00 Vaclav Petras wenzesl...@gmail.com: I've also noticed that the documentation on server does not contain generated/standard flags (--), the flags are included when there is a short flag

Re: [GRASS-dev] Tests down to 65% (from 86%)

2014-11-17 Thread Martin Landa
Hi MarkusM, 2014-11-17 23:01 GMT+01:00 Markus Metz markus.metz.gisw...@gmail.com: I have changed lib/gis/parser_html.c in r62776, now it works for me. A Flags section could not possibly be created if no flags were defined, and the standard -- flags are never defined with G_define_flag(). See