Hi folks, I got ISE when submitting the LNT logs to perf: http://lab.llvm.org:8011/builders/clang-native-arm-lnt/builds/4663/steps/lnt.nightly-test/logs/stdio I think this is the first time that I get this, is there something happening to the server? Can I disable submitting the results? I don't really care much about the performance of those runs, since that's just the conformance buildbot. Btw, anyone know of the status of the new "benchmark" run for the test-suite? cheers, --renato -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140116/72ae078f/attachment.html>
On 16 January 2014 14:44, Renato Golin <renato.golin at linaro.org> wrote:> Can I disable submitting the results? I don't really care much about the > performance of those runs, since that's just the conformance buildbot. >I had a look at the code and it seems that the LNT factory will *always* force the submitURL onto LitTest, which will always try to submit it to perf, which is still giving internal server errors. This is really disrupting our bots, can someone have a look at my attached patch for disabling the submitURL variable? I'm sorry if it's bad, I'm no python programmer and I have no ways of testing it right now. cheers, --renato -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140116/fd73e545/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: zorg-no-report-lnt.patch Type: text/x-patch Size: 1780 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140116/fd73e545/attachment.bin>
The error you are seeing there is the client side error of a server side exception. It is probably best to address the actual failure. Those will probably be in the apache log on the server. That said, I think if a bot really is just for testing and not performance there is no harm in not submitting the results. I will take a look at your patch. On Jan 16, 2014, at 6:44 AM, Renato Golin <renato.golin at linaro.org> wrote:> Hi folks, > > I got ISE when submitting the LNT logs to perf: > > http://lab.llvm.org:8011/builders/clang-native-arm-lnt/builds/4663/steps/lnt.nightly-test/logs/stdio > > I think this is the first time that I get this, is there something happening to the server? > > Can I disable submitting the results? I don't really care much about the performance of those runs, since that's just the conformance buildbot. > > Btw, anyone know of the status of the new "benchmark" run for the test-suite? > > cheers, > --renato > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140116/23433678/attachment.html>
On 01/16/2014 11:47 PM, Chris Matthews wrote:> The error you are seeing there is the client side error of a server side exception. It is probably best to address the actual failure. Those will probably be in the apache log on the server. > > That said, I think if a bot really is just for testing and not performance there is no harm in not submitting the results.I have the same problems, however I am actually interested in the performance numbers. Who is the person in charge of llvm.org/perf? Who would be able to check the logs? Cheers, Tobias
WRT the patch, you should use a parameter with a default set to True. Something similar to the clean=True flag. Also, it would be nice to maintain the order of arguments in the lnt invocation, so appending the submission args after lnt runtest nt, but before the run specific options. On Jan 16, 2014, at 1:53 PM, Renato Golin <renato.golin at linaro.org> wrote:> On 16 January 2014 14:44, Renato Golin <renato.golin at linaro.org> wrote: > Can I disable submitting the results? I don't really care much about the performance of those runs, since that's just the conformance buildbot. > > I had a look at the code and it seems that the LNT factory will *always* force the submitURL onto LitTest, which will always try to submit it to perf, which is still giving internal server errors. > > This is really disrupting our bots, can someone have a look at my attached patch for disabling the submitURL variable? I'm sorry if it's bad, I'm no python programmer and I have no ways of testing it right now. > > cheers, > --renato > > > > <zorg-no-report-lnt.patch>_______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140116/5fad1d59/attachment.html>