Updated call graph sizes based on analysis using JDK 8 (and increased ranges).

This commit is contained in:
Achim D. Brucker 2016-09-19 08:13:32 +01:00
parent 4a93d265ed
commit 2609c66fae
3 changed files with 12 additions and 12 deletions

View File

@ -71,16 +71,16 @@ class Featherweight extends FlatSpec with Matchers with BeforeAndAfterAll {
falsePositives intersect falseNegatives shouldBe empty
}
"Merged CallGraph" should "contain 6.6k nodes" in {
app.getCallGraphSize() should be (6631 +- 20)
"Merged CallGraph" should "contain 7.0k nodes" in {
app.getCallGraphSize() should be (7018 +- 200)
}
"JavaScriptCallGraph" should "contain 0.8k nodes" in {
app.getJSCallGraphSize() should be (856 +- 10)
}
"JavaCallGraph" should "be contain 5.7k nodes" in {
app.getJavaCallGraphSize() should be (5775 +- 10)
"JavaCallGraph" should "be contain 6.1k nodes" in {
app.getJavaCallGraphSize() should be (6162 +- 200)
}

View File

@ -75,16 +75,16 @@ class Featherweight_100_350 extends FlatSpec with Matchers with BeforeAndAfterAl
falsePositives intersect falseNegatives shouldBe empty
}
"Merged CallGraph" should "contain 6.6k nodes" in {
app.getCallGraphSize() should be (6627 +- 20)
"Merged CallGraph" should "contain 7.0k nodes" in {
app.getCallGraphSize() should be (7014 +- 200)
}
"JavaScriptCallGraph" should "contain 0.8k nodes" in {
app.getJSCallGraphSize() should be (858 +- 10)
}
"JavaCallGraph" should "be contain 5.7k nodes" in {
app.getJavaCallGraphSize() should be (5769 +- 10)
"JavaCallGraph" should "be contain 6.1k nodes" in {
app.getJavaCallGraphSize() should be (6156 +- 200)
}
"Java -> JavaScript" should "report fourteen hits" taggedAs (ManuallyChecked) in {

View File

@ -75,16 +75,16 @@ class Featherweight_100_630 extends FlatSpec with Matchers with BeforeAndAfterAl
falsePositives intersect falseNegatives shouldBe empty
}
"Merged CallGraph" should "contain 4.3k nodes" in {
app.getCallGraphSize() should be (4351 +- 20)
"Merged CallGraph" should "contain 4.2k nodes" in {
app.getCallGraphSize() should be (4241 +- 200)
}
"JavaScriptCallGraph" should "contain 0.9k nodes" in {
app.getJSCallGraphSize() should be (918 +- 10)
}
"JavaCallGraph" should "be contain 3.4k nodes" in {
app.getJavaCallGraphSize() should be (3433 +- 10)
"JavaCallGraph" should "be contain 3.3k nodes" in {
app.getJavaCallGraphSize() should be (3323 +- 170)
}
"Java -> JavaScript" should "report fourteen hits" taggedAs (ManuallyChecked) in {