Hi everyone,
I've upgrade to the lastest release, i'm trying under Emacs to run-
tests and now I receive the following error:
We evaluating: (run-tests 'konato.ode.tests.test-ode)
I receive:
java.lang.RuntimeException: java.lang.IllegalArgumentException: Wrong
number of args passed to: test-is$report (NO_SOURCE_FILE:0)
[Thrown class clojure.lang.Compiler$CompilerException]
I did remove all the src repertories and did a complete rebuild of
clojure. Tried with clojure 1.0.0 got the same thing.
This seems related to emacs slime or a way clojure handle repertory
reference , I can still run my test into a clojure repl started in the
shell.
Another little change, that might be related:
Before in emacs I was able to evaluate correctly:
(load-file "prjode/src/konato/ode/tests/test_ode.clj")
Now, I have to add the full path:
(load-file "/home/stephane/prjode/src/konato/ode/tests/test_ode.clj")
Here is my clojure starting script:
#!/bin/sh -e
JAVA=java
CLJ_DIR=$HOME/src/clojure
CLOJURE=$CLJ_DIR/clojure.jar
CONTRIB=$HOME/src/clojure-contrib/clojure-contrib.jar
#JLINE=$HOME/src/jline-0.9.94/jline-0.9.94.jar
ODE=$HOME/prjode/src/
#CP=$PWD:$CLOJURE:$JLINE:$CONTRIB:$ODE:
CP=$PWD:$CLOJURE:$CONTRIB:$ODE:.
java -server \
-Xdebug -
Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8888 \
-cp $CP clojure.lang.Repl
Thank you,
Stephane
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---