Hi Mr. Sierra,

I still have the same error after rebuild. Here is my clj-build
script:
#!/bin/sh -e
CLJ_ROOT=/home/stephane/src

export CLJ_ROOT

cd $CLJ_ROOT
rm -dfr clojure
rm -dfr clojure-contrib
rm -dfr clojure-mode
rm -dfr swank-clojure
rm -dfr slime
svn checkout http://clojure.googlecode.com/svn/trunk/ clojure
git clone git://github.com/jochu/clojure-mode.git
git clone git://github.com/jochu/swank-clojure.git
svn checkout http://clojure-contrib.googlecode.com/svn/trunk/ clojure-
contrib
cvs -d :pserver:anonymous:anonym...@common-lisp.net:/project/slime/
cvsroot co slime
cd clojure
ant
cd -
cd clojure-contrib
ant -Dclojure.jar=/home/stephane/src/clojure/clojure.jar


Here is the contrib version I have:

svn checkout http://clojure-contrib.googlecode.com/svn/trunk/ clojure-
contrib
Checked out revision 773.

But running from REPL in shell is ok:
Clojure 1.1.0-alpha-SNAPSHOT
user=> (load-file "/home/stephane/prjode/src/konato/ode/tests/
test_ode.clj")
nil
user=> (run-tests 'konato.ode.tests.test-
ode)

Testing konato.ode.tests.test-ode

Ran 9 tests containing 21 assertions.
0 failures, 0 errors.
nil
user=>

May be I do not take a good release of the other component for emacs
slime, swank?

Thank you,

Stephane __/)

On May 7, 10:01 am, Stuart Sierra <the.stuart.sie...@gmail.com> wrote:
> Hi Stephane,
> Sorry about this; it was my fault.  Should be fixed now, contrib SVN
> rev. 773.
> -Stuart Sierra
>
> On May 7, 8:27 am, stephaner <stepha...@gmail.com> wrote:
>
> > 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 clojure@googlegroups.com
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