aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-05-25add static Boost dependency testAdam C. Foltzer1-2/+5
2017-05-25look for static Boost libraries on *nix when requestedAdam C. Foltzer1-2/+4
This was already mostly working before due to how the linker arguments were constructed, but this will now be more resilient to the case where dynamic libraries only are present.
2017-05-25add support for static flag on Windows Boost dependencyAdam C. Foltzer1-2/+3
2017-05-22Merge pull request #1664 from QuLogic/codecovJussi Pakkanen10-21/+124
Enable code coverage
2017-05-22Merge pull request #1828 from MikeWey/dlang-compilesJussi Pakkanen2-0/+45
Add 'compiles' and 'has_multi_arguments' for dlang.
2017-05-22Update the Frida URL and description.Ole André Vadla RavnÄs1-1/+1
2017-05-21Use assert instead of error.Mike Wey1-12/+4
2017-05-21Add codecov badge.Elliott Sales de Andrade1-0/+1
2017-05-21Give each coverage build a unique name.Elliott Sales de Andrade2-2/+2
Travis builds are currently build number (123.1, 123.2, etc.) and AppVeyor is some random string, making it hard to determine which builds cover what.
2017-05-21Enable code coverage on AppVeyor.Elliott Sales de Andrade2-7/+19
* Install pip on msys (which doesn't have it) * Install codecov/coverage everywhere. * Generate coverage XML file manually because codecov tries to call the coverage script itself and it's in a weird place on the path.
2017-05-21Use a wrapper script to run tests in Cygwin.Elliott Sales de Andrade3-10/+15
2017-05-21Enable code coverage on Travis.Elliott Sales de Andrade2-2/+47
2017-05-21Add coverage export for tests.Elliott Sales de Andrade4-7/+47
2017-05-21Fix cross environment pollution.Ole André Vadla RavnÄs6-24/+55
Environment variables like CFLAGS and LDFLAGS should not affect the cross environment. Fixes #1772
2017-05-21Merge hdiutil fix branch.Jussi Pakkanen1-4/+3
2017-05-21Re-add comment about hdiutil outputStefan Graupner1-0/+2
2017-05-21Change hdiutil detachStefan Graupner1-4/+1
The detach now always fetches the correct mountpoint.
2017-05-21Create helper function for a rmtree that works reliably on Windows.Jussi Pakkanen3-19/+24
2017-05-21Merge pull request #1792 from jon-turney/custom_target_vs_module_defsJussi Pakkanen10-2/+79
Allow vs_module_defs to use a custom_target
2017-05-21cross: Fix host_machine.system in the example iphone cross config.Ole André Vadla RavnÄs1-1/+1
2017-05-21Update linkcagatay-y1-1/+1
Gcovr homepage is moved. Updated the link to the new URL.
2017-05-21Merge pull request #1823 from jon-turney/masterJussi Pakkanen1-21/+28
Improve documentation of build target and custom target objects
2017-05-21Fix typocagatay-y1-1/+1
2017-05-21Change repeated wordcagatay-y1-1/+1
2017-05-21Ignore built docs directory.Elliott Sales de Andrade1-1/+2
2017-05-21Remove extra temporary file from docs.Elliott Sales de Andrade1-29/+0
2017-05-20Update the test case.Mike Wey2-2/+12
2017-05-20fix lookup of boost modules when cross-compiling on osxGoncalo Carvalho1-1/+1
2017-05-20Add 'compiles' and 'has_multi_arguments' for dlang.Mike Wey3-0/+43
2017-05-20Updated list of users and minor sitemap cleanup.Jussi Pakkanen2-2/+5
2017-05-19docs: The return value of executable() is a builttarget object.Jon Turney1-1/+1
Make executable() consistent with all other functions returning a buildtarget, it's return type is a buildtarget object.
2017-05-19docs: Document the object returned by custom_targetJon Turney1-2/+10
2017-05-19docs: Correct list of things that are a build target to include shared_moduleJon Turney1-1/+1
2017-05-19docs: Move "build target object" from "build-in objects" to "returned objects"Jon Turney1-18/+17
Also move "run result" object so objects are sorted alphabetically
2017-05-18Merge pull request #1810 from QuLogic/pycharm-warningsJussi Pakkanen24-130/+202
Fix various warnings found in PyCharm
2017-05-18Skip unittests that request it rather than mark them as failed. Closes #1804.Jussi Pakkanen1-0/+4
2017-05-17Don't allow non-equality comparisons across types.Elliott Sales de Andrade2-0/+12
2017-05-17Only allow equality comparisons for non-elementary types.Elliott Sales de Andrade4-0/+106
2017-05-17Remove extra casts on InterpreterBase.evaluate_statement.Elliott Sales de Andrade2-41/+6
The result of this method is always a "native" object, and code coverage (plus a manual inspection) shows that this conversion is never done.
2017-05-17Delete the correct directory in dist check.Elliott Sales de Andrade1-1/+1
2017-05-17Add super call in RunTargetHolder.Elliott Sales de Andrade1-0/+1
2017-05-17Remove dead code paths.Elliott Sales de Andrade2-3/+1
2017-05-17Add missing asserts in unit tests.Elliott Sales de Andrade1-0/+3
2017-05-17Handle required `ExtraFrameworkDependency`s.Elliott Sales de Andrade1-0/+3
2017-05-17Fix undefined variables/methods.Elliott Sales de Andrade2-2/+2
2017-05-17Rearrange trys to avoid possible undefined vars.Elliott Sales de Andrade3-10/+11
2017-05-17Avoid shadowing outer variables.Elliott Sales de Andrade1-11/+11
Though actually, just rename them into something clearer.
2017-05-17Remove unused variables.Elliott Sales de Andrade11-34/+29
2017-05-17Use more direct dictionary literals.Elliott Sales de Andrade2-12/+4
2017-05-17Remove unnecessary __init__ methods.Elliott Sales de Andrade3-7/+2