Skip to content

Commit 26ef052

Browse files
committed
bypass benchmarks which are throwing errors
1 parent 7923856 commit 26ef052

File tree

1 file changed

+4
-1
lines changed
  • webdriver-java/src/main/java/net/stefankrause

1 file changed

+4
-1
lines changed

webdriver-java/src/main/java/net/stefankrause/App.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ private void runTests() throws Exception {
465465

466466
int length = REPEAT_RUN;
467467
for (Framework framework : frameworks) {
468-
System.out.println(framework);
468+
System.out.println(framework.framework);
469469

470470
for (Bench bench : benches) {
471471
System.out.println(bench.getName());
@@ -493,6 +493,9 @@ private void runTests() throws Exception {
493493

494494
writeSummary(framework.framework, bench, data);
495495
}
496+
catch(Exception ex) {
497+
System.err.println(ex);
498+
}
496499
finally {
497500
driver.quit();
498501
}

0 commit comments

Comments
 (0)