Changes between Initial Version and Version 1 of Ticket #717, comment 11


Ignore:
Timestamp:
2010-09-18T20:38:49Z (14 years ago)
Author:
davidsarah
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #717, comment 11

    initial v1  
    44>  In that test, the test code installed the deps tarball and then ran build, and made sure that the code under test (which is our build system) did not try to download any package. The code under test passed and the test is green! So why did it do the right thing and pass that test even if it reproducible does the wrong thing in David-Sarah's scenario (comment:8)?
    55
    6 In my scenario, I download a non-SUMO tarball, run {{{python setup.py trial}}} (expecting the dependencies to be downloaded and built before the test), and then run {{{python setup.py trial}}} again (expecting the previously downloaded dependencies to be used and not rebuilt). Are these expectations correct?
     6In my scenario, I download a non-SUMO tarball, run ~~{{{python setup.py trial}}}~~ {{{python setup.py build}}} followed by {{{python setup.py trial}}} (expecting the dependencies to be downloaded and built before the test), and then run {{{python setup.py trial}}} again (expecting the previously downloaded dependencies to be used and not rebuilt). Are these expectations correct?
    77
    88In any case, this is not the same thing as downloading {{{tahoe-deps.tar.gz}}}, untarring it in the distribution directory and then running {{{python setup.py build}}}, which is what test-desert-island does.