sbt - double free or corruption (!prev) error whenever running mocha tests
up vote
1
down vote
favorite
I've got an sbt project that I run front-end tests on with sbt mocha
. Whenever I attempt to do so, I get the below error. Everything else runs properly - I can do sbt test
which will run my specs2 scala tests but error out on the mocha tests. I can even run the project itself without issue.
com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:218)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:190)
at scala.util.Success$$anonfun$map$1.apply(Try.scala:206)
at scala.util.Try$.apply(Try.scala:161)
at scala.util.Success.map(Try.scala:206)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32)
at scala.concurrent.impl.ExecutionContextImpl$$anon$3.exec(ExecutionContextImpl.scala:107)
at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
[error] (<projectnameredacted>/*:mochaExecuteTests) com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)`
I've tried doing an sbt clean
, I've tried deleting the .ivy2
and .sbt
directories, forcing sbt to rebuild itself.
I'm running sbt 0.13.17 and, due to this being a company project, cannot change the sbt version. It's also utilizing scala 2.12.7.
From what I've read, the issue comes from trying to load multiple instances of standard libraries, but the error I'm getting doesn't come from any of the standard libraries, it comes from an sbt package that the project requires and has used without issue for months. Here is where I got that information.
scala sbt mocha
add a comment |
up vote
1
down vote
favorite
I've got an sbt project that I run front-end tests on with sbt mocha
. Whenever I attempt to do so, I get the below error. Everything else runs properly - I can do sbt test
which will run my specs2 scala tests but error out on the mocha tests. I can even run the project itself without issue.
com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:218)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:190)
at scala.util.Success$$anonfun$map$1.apply(Try.scala:206)
at scala.util.Try$.apply(Try.scala:161)
at scala.util.Success.map(Try.scala:206)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32)
at scala.concurrent.impl.ExecutionContextImpl$$anon$3.exec(ExecutionContextImpl.scala:107)
at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
[error] (<projectnameredacted>/*:mochaExecuteTests) com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)`
I've tried doing an sbt clean
, I've tried deleting the .ivy2
and .sbt
directories, forcing sbt to rebuild itself.
I'm running sbt 0.13.17 and, due to this being a company project, cannot change the sbt version. It's also utilizing scala 2.12.7.
From what I've read, the issue comes from trying to load multiple instances of standard libraries, but the error I'm getting doesn't come from any of the standard libraries, it comes from an sbt package that the project requires and has used without issue for months. Here is where I got that information.
scala sbt mocha
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I've got an sbt project that I run front-end tests on with sbt mocha
. Whenever I attempt to do so, I get the below error. Everything else runs properly - I can do sbt test
which will run my specs2 scala tests but error out on the mocha tests. I can even run the project itself without issue.
com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:218)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:190)
at scala.util.Success$$anonfun$map$1.apply(Try.scala:206)
at scala.util.Try$.apply(Try.scala:161)
at scala.util.Success.map(Try.scala:206)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32)
at scala.concurrent.impl.ExecutionContextImpl$$anon$3.exec(ExecutionContextImpl.scala:107)
at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
[error] (<projectnameredacted>/*:mochaExecuteTests) com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)`
I've tried doing an sbt clean
, I've tried deleting the .ivy2
and .sbt
directories, forcing sbt to rebuild itself.
I'm running sbt 0.13.17 and, due to this being a company project, cannot change the sbt version. It's also utilizing scala 2.12.7.
From what I've read, the issue comes from trying to load multiple instances of standard libraries, but the error I'm getting doesn't come from any of the standard libraries, it comes from an sbt package that the project requires and has used without issue for months. Here is where I got that information.
scala sbt mocha
I've got an sbt project that I run front-end tests on with sbt mocha
. Whenever I attempt to do so, I get the below error. Everything else runs properly - I can do sbt test
which will run my specs2 scala tests but error out on the mocha tests. I can even run the project itself without issue.
com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:218)
at com.typesafe.sbt.jse.SbtJsTask$$anonfun$com$typesafe$sbt$jse$SbtJsTask$$executeJsOnEngine$1.apply(SbtJsTask.scala:190)
at scala.util.Success$$anonfun$map$1.apply(Try.scala:206)
at scala.util.Try$.apply(Try.scala:161)
at scala.util.Success.map(Try.scala:206)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.Future$$anonfun$map$1.apply(Future.scala:235)
at scala.concurrent.impl.CallbackRunnable.run(Promise.scala:32)
at scala.concurrent.impl.ExecutionContextImpl$$anon$3.exec(ExecutionContextImpl.scala:107)
at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260)
at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)
at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
[error] (<projectnameredacted>/*:mochaExecuteTests) com.typesafe.sbt.jse.SbtJsTask$JsTaskFailure: double free or corruption (!prev)`
I've tried doing an sbt clean
, I've tried deleting the .ivy2
and .sbt
directories, forcing sbt to rebuild itself.
I'm running sbt 0.13.17 and, due to this being a company project, cannot change the sbt version. It's also utilizing scala 2.12.7.
From what I've read, the issue comes from trying to load multiple instances of standard libraries, but the error I'm getting doesn't come from any of the standard libraries, it comes from an sbt package that the project requires and has used without issue for months. Here is where I got that information.
scala sbt mocha
scala sbt mocha
asked Nov 21 at 21:48
IanCZane
10012
10012
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
It ended up being an issue with my version of Node.js. Once I updated from 10.0.0 to 11.2.0 the issue went away.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
It ended up being an issue with my version of Node.js. Once I updated from 10.0.0 to 11.2.0 the issue went away.
add a comment |
up vote
0
down vote
accepted
It ended up being an issue with my version of Node.js. Once I updated from 10.0.0 to 11.2.0 the issue went away.
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
It ended up being an issue with my version of Node.js. Once I updated from 10.0.0 to 11.2.0 the issue went away.
It ended up being an issue with my version of Node.js. Once I updated from 10.0.0 to 11.2.0 the issue went away.
answered Nov 28 at 15:07
IanCZane
10012
10012
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420931%2fsbt-double-free-or-corruption-prev-error-whenever-running-mocha-tests%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown