aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorFrantisek Sodomka <fsodomka@gmail.com>2009-03-20 11:07:10 +0000
committerFrantisek Sodomka <fsodomka@gmail.com>2009-03-20 11:07:10 +0000
commit3b4bd7bc6e2fbeb9b7ba698b0dfdd8f5719a4481 (patch)
treee95870f5d284c6d379d0aa153d29d4160ce21e24 /build.xml
parent0a694e70f36ce6986ec8b21846426ff17d3aabc2 (diff)
test-contrib and datalog tests behave the same as test-clojure
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 8eb925f4..51aa9efd 100644
--- a/build.xml
+++ b/build.xml
@@ -47,7 +47,8 @@
<path location="${src}"/>
<path location="${clojure.jar}"/>
</classpath>
- <arg value="src/clojure/contrib/test_contrib.clj"/>
+ <arg value="-e"/>
+ <arg value="(require '(clojure.contrib [test-contrib :as main])) (main/run)"/>
</java>
</target>
@@ -60,7 +61,8 @@
<path location="${src}"/>
<path location="${clojure.jar}"/>
</classpath>
- <arg value="src/clojure/contrib/datalog/tests/test.clj"/>
+ <arg value="-e"/>
+ <arg value="(require '(clojure.contrib.datalog.tests [test :as main])) (main/run)"/>
</java>
</target>