aboutsummaryrefslogtreecommitdiff
path: root/run-test-client.sh
AgeCommit message (Collapse)Author
2016-11-01interop-testing: -PskipCodegen requires =trueEric Anderson
Otherwise it has no effect.
2015-07-01Suggest -PskipCodegen in run-test-{client,server}Eric Anderson
Just helps new users wanting to try things out from thinking they need to deal with compiling our protoc plugin. As seen in #581
2015-05-20Rename integration-testing to interop-testingEric Anderson
"Interoperability" is a more appropriate name for the tests, since they are used for testing across different implementations. They will do a bit of integration testing, like for auth, but this is a smaller scale. It seems the other languages (Go, C++, Node, PHP, Python, Ruby) are using "interop" to describe the tests, and the test case specifications document is named with "interop". After this change, C# will be the only language calling them "integration" tests. This change just renames the folder and artifact. We can change the internal package names later. However, once we do a release, old artifact names will live forever in Maven Central.
2015-05-07Stop running gradle in run-test-{client,server}.shEric Anderson
This substantially decreases the amount of time to run a client test via the script.
2015-05-05Use CreateStartScripts for integration-testingEric Anderson
This makes it easy to run our test client/server without running gradle every time. For the moment we run 'installDist' in our script since that is not performed as part of 'build' or 'assemble'. Once we fix our scripts and improve the documentation, we can remove running installdist from our script.
2015-03-23Remove readlink -f in run-test*.sh scriptsEric Anderson
readlink -f allows the script to be run via a symlink yet still function. However, OS X doesn't have the -f flag. We don't really care too much about symlinking to the scripts, so just drop readlink -f.
2015-02-17Allow running test scripts from any directoryEric Anderson
This was actually a feature lost when swapping to Gradle, and is used by the grpc/java Dockerfile. But it is useful in general.
2015-02-17Use ./gradlew instead of gradle in run scriptsEric Anderson
2015-01-27Removing all references to "stubby"nmittler
2015-01-26Migrating run scripts to gradle.nmittler
2015-01-08Allow killing test server/clientejona
mvn exec:exec doesn't kill the child process when Maven is killed. Now we just run ourselves, but have Maven do as much heavy lifting as able. ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81736090
2015-01-08Adding MOE configuration for grpc_java.nathanmittler
The TestService proto is temporarily supplied as a generated jar (until the open source protoc compiler supports grpc). Copies of messages.proto, empty.proto, and message_set.proto are scrubbed and included in the source under integration-testing. ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=78711468