summaryrefslogtreecommitdiff
path: root/scripts/jobs/validate/test
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2016-07-29 12:20:06 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2016-07-29 12:23:02 -0700
commit1ae579cae866ea91f340ef8de1f795e8236ad648 (patch)
tree558c418049276bc83e077c78e16b4cdf16c4657f /scripts/jobs/validate/test
parent80ee988bceccf947c4c94891a90ea5eae3227766 (diff)
downloadscala-1ae579cae866ea91f340ef8de1f795e8236ad648.tar.gz
scala-1ae579cae866ea91f340ef8de1f795e8236ad648.tar.bz2
scala-1ae579cae866ea91f340ef8de1f795e8236ad648.zip
Make sure sbt's exit code is seen as script exit code
... and not grep's exit code, which would mean the test suite's result is determined by whether grep fails or not, instead of partest/junit's hard work
Diffstat (limited to 'scripts/jobs/validate/test')
-rwxr-xr-xscripts/jobs/validate/test2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/jobs/validate/test b/scripts/jobs/validate/test
index 9938319dd8..7b00356390 100755
--- a/scripts/jobs/validate/test
+++ b/scripts/jobs/validate/test
@@ -23,7 +23,7 @@ case $prDryRun in
--warn \
"setupValidateTest $prRepoUrl" \
$testExtraArgs \
- testAll | grep -v "was too long to be displayed in the webview, and will be left out"
+ testAll
;;