Hi Eric,

> -  system (command);
> +  ignore_value (system (command));

Can you please remind me: Why not

  ASSERT (system (command) == 0);   ?

On Unix platforms, if system() returns nonzero, the user running the test
better ought to know it, no?

Bruno
-- 
In memoriam Jean Moulin <http://en.wikipedia.org/wiki/Jean_Moulin>

Reply via email to