defineVariable("marathon_test_dir", System.getProperty("marathon.test.dir"));
interpreter.executeScript(script, filename);
} catch (RaiseException e) {
e.printStackTrace();
// e.getCause().printStackTrace();
throw new ScriptException(e.getException().toString());
} catch (Throwable t) {
t.printStackTrace();
throw new ScriptException(t.getMessage());
}
}