Re: [Scons-dev] Roundup tracker demo instance...

2015-09-29 Thread Florian Miedniak
2015-09-28 21:42 GMT+02:00 William Blevins : > > > On Mon, Sep 28, 2015 at 7:45 PM, Russel Winder > wrote: > >> On Mon, 2015-09-28 at 13:56 +0100, William L Blevins wrote: >> > […] >> > I have used Jira and I think if we can get free instances for the

Re: [Scons-dev] Does SCons test support negative tests?

2015-09-29 Thread Gary Oberbrunner
On Tue, Sep 29, 2015 at 12:08 PM, Bill Deegan wrote: > Gary, > > For this test I ended up just having the full expected output, in this > case I effectively checked for the output not being there. > It worked for the negative case because the output is pretty short. >

Re: [Scons-dev] Does SCons test support negative tests?

2015-09-29 Thread Bill Deegan
Gary, For this test I ended up just having the full expected output, in this case I effectively checked for the output not being there. It worked for the negative case because the output is pretty short. Can you use must_not_contain on stdout? I'm thinking our test framework docs are pretty

[Scons-dev] Does SCons test support negative tests?

2015-09-29 Thread Bill Deegan
Greetings, I'm looking through the test logic and I don't see a way to say: 1) Output must have xyz in it 2) AND must NOT have abc in it I'm working on a test for the append flag for Help() and depending on it's setting the output from scons -h should or shouldn't contain help from

Re: [Scons-dev] Does SCons test support negative tests?

2015-09-29 Thread William Blevins
I added the functionality for (1) in the CL-patch since I wanted to look for contents without haven't to include stdout of unrelated information. V/R, William On Tue, Sep 29, 2015 at 6:10 PM, Gary Oberbrunner wrote: > > On Tue, Sep 29, 2015 at 12:08 PM, Bill Deegan