Re: Separate Compilation of Tests

2016-09-27 Thread Michael Park
On Tue, Sep 27, 2016 at 12:21 PM, Alexander Rojas wrote: > The workaround I use is to go to the folder of the makefile root > directory, so for > Mesos, and then use the specific target, for example: > > For mesos-tests > cd ${MESOS_SRC_ROOT}/build/src > make -j4

Re: Separate Compilation of Tests

2016-09-27 Thread Benjamin Bannier
Hi, being able to iterate more rapidly on tests sounds great. I am slightly unsure about the cost of (i) linking even more binaries, and (ii) the overhead of setting up the test environment for the invocations of test binaries (I believe this was O(100ms) per `main` at some point). I believe if

Re: Two important tickets for improving documentation

2016-09-27 Thread Timothy Anderegg
So a few days turned into a few months, but Mesos-3011 (versioned documentation on the website) is ready for review if anyone has time, thanks! https://issues.apache.org/jira/browse/MESOS-3011 -Tim On Thu, Jun 30, 2016 at 9:43 PM Timothy Anderegg wrote: > Yep,

Re: Separate Compilation of Tests

2016-09-27 Thread Alexander Rojas
The workaround I use is to go to the folder of the makefile root directory, so for Mesos, and then use the specific target, for example: For mesos-tests cd ${MESOS_SRC_ROOT}/build/src make -j4 mesos-tests && ./mesos-tests for libprocess cd ${MESOS_SRC_ROOT}/build/3rdparty/libprocess make -j4