diff options
author | Frantisek Sodomka <fsodomka@gmail.com> | 2009-03-20 11:07:10 +0000 |
---|---|---|
committer | Frantisek Sodomka <fsodomka@gmail.com> | 2009-03-20 11:07:10 +0000 |
commit | 3b4bd7bc6e2fbeb9b7ba698b0dfdd8f5719a4481 (patch) | |
tree | e95870f5d284c6d379d0aa153d29d4160ce21e24 /build.xml | |
parent | 0a694e70f36ce6986ec8b21846426ff17d3aabc2 (diff) |
test-contrib and datalog tests behave the same as test-clojure
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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> |