diff --git a/SCC-OUTPUT-REPORT.html b/SCC-OUTPUT-REPORT.html index 7deffb8bf..2c2604d97 100644 --- a/SCC-OUTPUT-REPORT.html +++ b/SCC-OUTPUT-REPORT.html @@ -12,12 +12,12 @@ Go 36 - 8888 - 1428 + 8899 + 1431 422 - 7038 - 1417 - 351833 + 7046 + 1419 + 352051 Java 24 @@ -381,12 +381,12 @@ HTML 1 - 635 + 617 0 0 - 635 + 617 0 - 9251 + 9000 JSON 1 @@ -607,11 +607,11 @@ Total 176 - 26734 - 3025 + 26727 + 3028 1758 - 21951 - 2401 - 1808723 + 21941 + 2403 + 1808690 \ No newline at end of file diff --git a/processor/processor_test.go b/processor/processor_test.go index 25be28c4b..2ca0af9f0 100644 --- a/processor/processor_test.go +++ b/processor/processor_test.go @@ -19,6 +19,17 @@ func TestProcessConstants(t *testing.T) { } } +func TestProcessConstantsPathExclude(t *testing.T) { + PathDenyList = []string{"testing/"} + ProcessConstants() + + if PathDenyList[0] != "testing" { + t.Error("expected / to be trimmed") + } + + PathDenyList = []string{} +} + func TestConfigureGc(t *testing.T) { ConfigureGc() }