StanfordSNR / gg

The Stanford Builder
GNU General Public License v3.0
988 stars 71 forks source link

Python SDK library with examples and tests #15

Closed faromero closed 6 years ago

sadjad commented 6 years ago

Hi Franky,

Thank you for the pull request. It looks good, the only problem is that the test is failing. It seems that make check actually passes, but make distcheck is failing. Could you please run make distcheck locally on your machine and see what's going wrong? (make distcheck uses separate directories for build and source. You can check out the other test files to see some examples. Let me know if you have any troubles with that.)

-- Sadjad

faromero commented 6 years ago

Hi Sadjad, For make distcheck, the problem is that the tools directory is not inside of gg-0.01, which is why the test fails (it can't find the directory where the source code and tests live). How do I get the tools directory inside of gg-0.01? Or do I need to make a special case for this in the test script?

Franky