Changes between Version 1 and Version 2 of Ticket #54215, comment 16


Ignore:
Timestamp:
Sep 9, 2017, 6:23:20 PM (7 years ago)
Author:
kencu (Ken)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54215, comment 16

    v1 v2  
    1515
    1616I wonder if could it be as easy as adding this block, then changing the test.cmd to `make -k`,  the test.target to `check`, and setting the test.dir to `${workpath}/build`
     17
     18- I added the following to the Portfile. Not 100% sure this is correct, but `port lint --nitpick` liked it, and it at least has started. Tell you in about two days how it turns out :> .
     19{{{
     20############## TESTING infrastructure #########
     21
     22pre-test {
     23    eval test.args  ${build.args}
     24}
     25test.args-append    -k
     26test.run            yes
     27test.cmd            make
     28test.target         check
     29test.dir            ${workpath}/build
     30
     31################################################
     32}}}
     33
     34I suppose there is probably a `depends_test port:dejagnu port:expect` that exists if I were to go looking for it.