10769: added diagnostics for container requests in 9tee4 10769-diagnostics-9tee4
authorNico Cesar <nico@curoverse.com>
Fri, 27 Jan 2017 13:51:31 +0000 (08:51 -0500)
committerNico Cesar <nico@curoverse.com>
Fri, 27 Jan 2017 13:51:31 +0000 (08:51 -0500)
refs #10769

jenkins/run-diagnostics-suite.sh

index ef25fd40fde73540773247cdd3a6c8d8873fc215..55ddbe9f03a2b6155e8a07e6ddff347645e328ea 100755 (executable)
@@ -75,7 +75,12 @@ if [[ ! -d tmp ]]; then
   mkdir tmp
 fi
 
-RAILS_ENV=diagnostics bundle exec rake TEST=test/diagnostics/pipeline_test.rb
+if [ $INSTANCE == '9tee4' ] 
+then
+    RAILS_ENV=diagnostics bundle exec rake TEST=test/diagnostics/container_request_test.rb
+else
+    RAILS_ENV=diagnostics bundle exec rake TEST=test/diagnostics/pipeline_test.rb
+fi
 
 ECODE=$?