Move to dd-smoke-test project

This commit is contained in:
Gary Huang 2019-01-08 23:12:28 -05:00
parent e66f91cb49
commit 55787b4fb4
No known key found for this signature in database
GPG Key ID: 0CB168EE6C6844B7
7 changed files with 4 additions and 5 deletions

View File

@ -114,7 +114,7 @@ task deletePIDFile() {
tasks.withType(Test) {
// so the test can get this property
jvmArgs "-Ddatadog.ittest.server.port=${playHttpPort}"
jvmArgs "-Ddatadog.smoketest.server.port=${playHttpPort}"
testLogging {
events "started"

View File

@ -8,7 +8,7 @@ import spock.lang.Specification
class PlaySmokeTest extends Specification {
OkHttpClient client = OkHttpUtils.client()
private int port = Integer.parseInt(System.getProperty("datadog.ittest.server.port", "8080"))
private int port = Integer.parseInt(System.getProperty("datadog.smoketest.server.port", "8080"))
def "welcome endpoint #n th time"() {
setup:

View File

@ -17,10 +17,9 @@ include ':dd-java-agent:agent-jmxfetch'
// misc
include ':dd-java-agent:testing'
// smoke tests
include ':dd-smoke-tests:wildfly'
include ':dd-java-agent-ittests'
include ':dd-java-agent-ittests:play-ittests'
include ':dd-smoke-tests:play'
// instrumentation:
include ':dd-java-agent:instrumentation:akka-http-10.0'