Skip to content

Commit

Permalink
Update to the latest html reporter.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandar Prokopec committed May 2, 2013
1 parent 534413c commit 88e24bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store

target
project/target
tmp*
Expand Down
1 change: 1 addition & 0 deletions src/main/scala/org/scalameter/PerformanceTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ object PerformanceTest {
def measurer: Measurer = new Measurer.IgnoringGC with Measurer.PeriodicReinstantiation with Measurer.OutlierElimination with Measurer.RelativeNoise
def executor: Executor = new execution.SeparateJvmsExecutor(warmer, aggregator, measurer)
def reporter: Reporter = org.scalameter.Reporter.Composite(
new DsvReporter('\t'),
new RegressionReporter(RegressionReporter.Tester.OverlapIntervals(), RegressionReporter.Historian.ExponentialBackoff()),
new HtmlReporter(HtmlReporter.Renderer.regression: _*)
)
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/org/scalameter/reporting/HtmlReporter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ object HtmlReporter {
}

object Renderer {
def regression = Seq(Info(), Chart(ChartReporter.ChartFactory.XYLine()), Chart(ChartReporter.ChartFactory.TrendHistogram()))
def regression = Seq(HtmlReporter.Renderer.JSChart())

def basic = Seq(Info(), BigO(), Chart(ChartReporter.ChartFactory.XYLine()))

Expand Down

0 comments on commit 88e24bb

Please sign in to comment.