On Feb 16, 5:51 pm, Ram <rve...@gmail.com> wrote:
> I'm having an issue compiling clojure-contrib on Windows.
>
> I downloaded the code from the git repository and when I run Maven,
> after compilation it runs through the test suite fails in test-io:
>
> FAIL in (test-as-url) (run-test5405918110152723544.clj:47)
> expected: (= (URL. "file:/foo") (as-url (File. "/foo")))
>   actual: (not (= #<URL file:/foo> #<URL file:/C:/foo>))
>
> I'm guessing someone expected UNIX style filenames in this test case
> and not Windows filenames, but that is besides the issue. The issue is
> that the jars aren't actually generating themselves. Am I missing
> something? If I am, its probably something really dumb.

Yes, contrib has had some failing tests on Windows for a while now.
You can tell maven to ignore the tests and install the jars anyway:

mvn -Dmaven.test.skip=true install

Chris

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to