-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duda I/O: adding Duda I/O framework tests. #905
Conversation
The following patch adds a web service based on Duda I/O framework, at the moment only tests #1 and #6 are implemented. For the next round we will cover Database tests. For more details about the stack and components please refer to: http://duda.io http://monkey-project.com Signed-off-by: Eduardo Silva <[email protected]>
Wow, huge commit. |
if that is allowed i will do it. Is this a formal request to be merged ? |
@edsiper Wow, this is indeed a huge commit. Our team will need to take a look at exactly what is happening in here. @methane is a frequent contributor to the project and has been very helpful, so I suspect that he is correct and that you have included the entire framework in your pull request. If so, that must change. In general, the pull request for a new framework to benchmark need only be the implementation of the tests from our requirements (http://www.techempower.com/benchmarks/#section=code) to run through the various tests ( The actual framework that you are using needs to be available from a public URL so that others can (as opposed to must) download and install any prerequisites to run your stack directly. We are currently in the process of getting a rather large pull request merged that changes how we handle this installation/setup procedure. After reviewing this pull request, I will post back again when that has been concluded if it necessary for you to make any changes there. |
hi Mike, On Mon, Jul 7, 2014 at 8:41 AM, Mike Smith [email protected] wrote:
thanks for the clarification, if required i can just put a script to thanks, Eduardo Silva |
@edsiper I mentioned #900 because it is going to pretty drastically change how we handle the 'installation' portion of each framework. Prior to #900, there is a massive Essentially, if you have a language, framework, webserver, or other software required to run your tests, it should be done in this file. However, #900 is compartmentalizing the process to make each test have its own installation. Take a look at what is proposed in #900 to get an idea. Essentially, a pull request for a new language/webserver/framework/etc should be able to bootstrap its requirements, and only have source code for the application implementation (that handles the various tests). |
closing in favor of #946 |
The following patch adds a web service based on Duda I/O framework,
at the moment only tests #1 and #6 are implemented. For the next round
we will cover Database tests.
For more details about the stack and components please refer to:
http://duda.io
http://monkey-project.com
Signed-off-by: Eduardo Silva [email protected]