|
List Info
Thread: test target
|
|
| test target |
  United States |
2007-10-18 15:57:32 |
What target should I specify to run all the tests in all
test suites within
single Jamfile?
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  United States |
2007-10-18 16:26:28 |
Gennadiy Rozental wrote:
> What target should I specify to run all the tests in
all test suites within
> single Jamfile?
Do you mean something other than just running bjam in the
test directory
where the Jamfile is?
--
-- Grafik - Don't Assume Anything
-- Redshift Software, Inc. - http://redshift-software
.com
-- rrivera/acm.org - grafik/redshift-software.com
-- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  United States |
2007-10-18 16:31:31 |
"Rene Rivera" <grafikrobot gmail.com> wrote in message
news:4717CF84.7020300 gmail.com...
> Gennadiy Rozental wrote:
>> What target should I specify to run all the tests
in all test suites
>> within
>> single Jamfile?
>
> Do you mean something other than just running bjam in
the test directory
> where the Jamfile is?
Yes. Can I specify actual target (it used to be test I
believe). I need this
for consistency, since I run bjam wrapped into script.
Gennadiy
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  United States |
2007-10-18 16:43:20 |
Gennadiy Rozental wrote:
> "Rene Rivera" <grafikrobot gmail.com> wrote in message
> news:4717CF84.7020300 gmail.com...
>> Gennadiy Rozental wrote:
>>> What target should I specify to run all the
tests in all test suites
>>> within
>>> single Jamfile?
>> Do you mean something other than just running bjam
in the test directory
>> where the Jamfile is?
>
> Yes. Can I specify actual target (it used to be test I
believe). I need this
> for consistency, since I run bjam wrapped into script.
I guess you could use the "all" target, IIRC.
--
-- Grafik - Don't Assume Anything
-- Redshift Software, Inc. - http://redshift-software
.com
-- rrivera/acm.org - grafik/redshift-software.com
-- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  United States |
2007-10-18 16:52:02 |
"Rene Rivera" <grafikrobot gmail.com> wrote in message
news:4717D378.1010800 gmail.com...
> Gennadiy Rozental wrote:
>> "Rene Rivera" <grafikrobot gmail.com> wrote in message
>> news:4717CF84.7020300 gmail.com...
>>> Gennadiy Rozental wrote:
>>>> What target should I specify to run all the
tests in all test suites
>>>> within
>>>> single Jamfile?
>>> Do you mean something other than just running
bjam in the test directory
>>> where the Jamfile is?
>>
>> Yes. Can I specify actual target (it used to be
test I believe). I need
>> this
>> for consistency, since I run bjam wrapped into
script.
>
> I guess you could use the "all" target,
IIRC.
Nope. both all and test produce:
"don't know how to make ..."
message
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  Russian Federation |
2007-10-19 00:13:33 |
On Friday 19 October 2007 06:11:14 Rene Rivera wrote:
> >>> for consistency, since I run bjam wrapped
into script.
> >> I guess you could use the "all"
target, IIRC.
> >
> > Nope. both all and test produce:
> >
> > "don't know how to make ..."
>
> Well the only other alternative I can think of is to
add an alias for
> the targets.
To build all targets in current Jamfile it's possible to
do:
bjam .
- Volodya
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  United States |
2007-10-19 00:17:42 |
"Vladimir Prus" <ghost cs.msu.su> wrote in
message
news:200710190913.33825.ghost cs.msu.su...
> On Friday 19 October 2007 06:11:14 Rene Rivera wrote:
>
>> >>> for consistency, since I run bjam
wrapped into script.
>> >> I guess you could use the "all"
target, IIRC.
>> >
>> > Nope. both all and test produce:
>> >
>> > "don't know how to make ..."
>>
>> Well the only other alternative I can think of is
to add an alias for
>> the targets.
>
> To build all targets in current Jamfile it's possible
to do:
>
> bjam .
What if I do not want all targets (there may be potentially
some auxiliary
targets), but only related to unit testing? Why can't we
have test target as
we used to have?
Gennadiy
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  Russian Federation |
2007-10-19 00:40:56 |
On Friday 19 October 2007 09:17:42 Gennadiy Rozental wrote:
>
> "Vladimir Prus" <ghost cs.msu.su> wrote in message
> news:200710190913.33825.ghost cs.msu.su...
> > On Friday 19 October 2007 06:11:14 Rene Rivera
wrote:
> >
> >> >>> for consistency, since I run bjam
wrapped into script.
> >> >> I guess you could use the
"all" target, IIRC.
> >> >
> >> > Nope. both all and test produce:
> >> >
> >> > "don't know how to make ..."
> >>
> >> Well the only other alternative I can think of
is to add an alias for
> >> the targets.
> >
> > To build all targets in current Jamfile it's
possible to do:
> >
> > bjam .
>
> What if I do not want all targets (there may be
potentially some auxiliary
> targets), but only related to unit testing?
What is the practical problem with building those auxiliary
targets?
> Why can't we have test target as we used to have?
I don't think so -- it's possible in theory but does not
seem like
the most important thing to implement.
- Volodya
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  United States |
2007-10-19 08:27:08 |
Vladimir Prus <ghost <at> cs.msu.su> writes:
> > What if I do not want all targets (there may be
potentially some auxiliary
> > targets), but only related to unit testing?
>
> What is the practical problem with building those
auxiliary targets?
It maybe test input file generation target that take half an
hour to run. In
any case I just need to run the tests not anything else.
> > Why can't we have test target as we used to have?
>
> I don't think so -- it's possible in theory but does
not seem like
> the most important thing to implement.
I am sure you have your own priority, but it's important
usebiility issie IMO.
Gennadiy
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: test target |
  United States |
2007-10-19 10:32:16 |
on Fri Oct 19 2007, Gennadiy Rozental
<rogeeff-AT-gmail.com> wrote:
> Vladimir Prus <ghost <at> cs.msu.su>
writes:
>
>> > What if I do not want all targets (there may
be potentially some auxiliary
>> > targets), but only related to unit testing?
>>
>> What is the practical problem with building those
auxiliary targets?
>
> It maybe test input file generation target that take
half an hour to run. In
> any case I just need to run the tests not anything
else.
>
>> > Why can't we have test target as we used to
have?
>>
>> I don't think so -- it's possible in theory but
does not seem like
>> the most important thing to implement.
>
> I am sure you have your own priority, but it's
important usebiility issie IMO.
I agree, but it's actually pretty easy to achieve. See
http://svn.boost.org/trac/boost/browser
/trunk/libs/python/example/Jamroot
which does it.
--
Dave Abrahams
Boost Consulting
http://www.boost-cons
ulting.com
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
|
|
|
about | contact Other archives ( Real Estate discussion Medical topics )
|