In certain kinds of code it\'s relatively easy to cause an infinite loop without blowing the stack. When testing code of this nature using clojure-test, is there a way to abort
As per this old discussion, adding (use 'clojure.contrib.repl-utils)) and (add-break-thread!) to user.clj should enable you to press C-c C-c for passing SIGINT to the long running evaluation/processe.