From 5b97691696b2778d3578505e8a86bdb50223f24a Mon Sep 17 00:00:00 2001 From: Mike Aizatsky Date: Fri, 14 Oct 2016 14:35:51 -0700 Subject: [PATCH] Update libfuzzer-pipeline-test.groovy --- infra/libfuzzer-pipeline-test.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/infra/libfuzzer-pipeline-test.groovy b/infra/libfuzzer-pipeline-test.groovy index 1dfdd93f6..32db757c2 100644 --- a/infra/libfuzzer-pipeline-test.groovy +++ b/infra/libfuzzer-pipeline-test.groovy @@ -87,6 +87,7 @@ def call(body) { def resultsDir = "$workspace/test-results" sh "rm -rf $resultsDir" sh "mkdir -p $resultsDir" + dir ('out') { def fuzzersFound = 0 sh "ls -alR" @@ -126,8 +127,9 @@ def call(body) { sh "cat $resultsDir/TEST-${sanitizer}.xml" } } + sh "ls -al $resultsDir/" - step([$class: 'JUnitResultArchiver', testResults: '**/TEST-*.xml']) + step([$class: 'JUnitResultArchiver', testResults: 'test-results/TEST-*.xml']) echo "Tested $fuzzersFound fuzzer" if (!fuzzersFound) { error "no fuzzers found";