[Pyrex] Testing on Linux

Greg Ewing greg.ewing at canterbury.ac.nz
Wed Apr 19 06:34:33 CEST 2006


Eric Wald wrote:

> Unfortunately, a few of the tests fail, and some others give warnings.
> Is this normal, or an artifact of the different compiler environment?

The C compiler may produce warnings, but it should not produce
any errors, and none of the tests should fail.

> +        if verbose_flag: args += ['-v', '-Wall']

-Wall is a bit excessive -- it'll give you a lot of warning noise.
I've been using -pedantic -Wno-long-long to check for things that
might cause problems with future gcc versions.

--
Greg




More information about the Pyrex mailing list