summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2014-11-09 02:31:45 +0000
committerJohan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl>2014-11-09 02:31:45 +0000
commit6d8711ca804646d2c63e42c4747e3290619bda59 (patch)
treeb23eae2898ecea1bde5f20e037bec5a53924aafb
parentAdd specialized transforms (diff)
downloadinkscape-6d8711ca804646d2c63e42c4747e3290619bda59.tar.gz
inkscape-6d8711ca804646d2c63e42c4747e3290619bda59.zip
windows: fix running of cxxtests.
problem was that DLLs could not be found. We have to copy the cxxtests.exe file to the distribution folder (with all DLLs in in), and run it there. (bzr r13689)
-rw-r--r--build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 6f3324752..dd3bf0942 100644
--- a/build.xml
+++ b/build.xml
@@ -836,7 +836,8 @@
-->
<target name="check" depends="linkcxxtests,distbase"
description="perform unit tests">
- <cxxtestrun command="${build}/cxxtests" workingdir="${dist}" />
+ <copy todir="${dist}" file="${build}/cxxtests.exe"/>
+ <cxxtestrun command="${dist}/cxxtests" workingdir="${dist}" />
</target>
<!--