Skip to content

Commit

Permalink
Temporarily disable tsan and asan presubmit tests (#326)
Browse files Browse the repository at this point in the history
Temporarily disable tsan and asan presubmit tests before the
Jenkins problem is resolved.

To-do: enable tsan and asan presubmit tests after the Jenkins
problem is resolved.
  • Loading branch information
lei-tang authored and qiwzhang committed Dec 13, 2017
1 parent 448992e commit 046df20
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 10 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,11 @@ def presubmit() {
def branches = [
'asan': {
BuildNode {
presubmitTests('asan')
//Temporarily disable the asan presubmit tests
//as a workaround before the Jenkins problem is resolved.
//To-do: enable the asan presubmit tests after
//the Jenkins problem is resolved.
//presubmitTests('asan')
}
},
'build-and-test': {
Expand All @@ -229,7 +233,11 @@ def presubmit() {
},
'tsan': {
BuildNode {
presubmitTests('tsan')
//Temporarily disable the tsan presubmit tests
//as a workaround before the Jenkins problem is resolved.
//To-do: enable the tsan presubmit tests after
//the Jenkins problem is resolved.
//presubmitTests('tsan')
}
},
]
Expand Down
6 changes: 5 additions & 1 deletion src/nginx/t/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,11 @@ nginx_suite(
"transcoding_large.t",
"transcoding_metadata.t",
"transcoding_query_params.t",
"transcoding_shared_port_ssl.t",
#Temporarily disable the transcoding_shared_port_ssl.t test,
#which occasionally fails in the Jenkins presubmit tests.
#To-do: enable the transcoding_shared_port_ssl.t test after
#the Jenkins problem is resolved.
#"transcoding_shared_port_ssl.t",
"transcoding_status.t",
"transcoding_streaming.t",
"transcoding_utf8.t",
Expand Down

0 comments on commit 046df20

Please sign in to comment.