--- old/test/src/jdk/nashorn/internal/test/framework/AbstractScriptRunnable.java 2014-04-01 12:54:03.822180322 +0200 +++ new/test/src/jdk/nashorn/internal/test/framework/AbstractScriptRunnable.java 2014-04-01 12:54:03.678180323 +0200 @@ -200,6 +200,8 @@ return getEvaluator().run(out, err, args); } catch (final IOException e) { throw new UnsupportedOperationException("I/O error in initializing shell - cannot redirect output to file"); + } catch (Throwable t) { + throw new RuntimeException(Arrays.toString(args), t); } }