[LNT] r237564 - Fix bug in buildbot reporting introduced in r237540

Chris Matthews chris.matthews at apple.com
Mon May 18 10:25:28 PDT 2015


Thanks, this is the correct fix. I think this happens when the server is an older version of LNT than the client.


> On May 18, 2015, at 5:28 AM, Tobias Grosser <tobias at grosser.es> wrote:
> 
> Author: grosser
> Date: Mon May 18 07:28:22 2015
> New Revision: 237564
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=237564&view=rev
> Log:
> Fix bug in buildbot reporting introduced in r237540
> 
> Modified:
>    lnt/trunk/lnt/lnttool/main.py
> 
> Modified: lnt/trunk/lnt/lnttool/main.py
> URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/lnttool/main.py?rev=237564&r1=237563&r2=237564&view=diff
> ==============================================================================
> --- lnt/trunk/lnt/lnttool/main.py (original)
> +++ lnt/trunk/lnt/lnttool/main.py Mon May 18 07:28:22 2015
> @@ -153,7 +153,7 @@ def action_runtest(name, args):
>         parser.error('invalid test name %r' % test_name)
> 
>     server_results = test_instance.run_test('%s %s' % (name, test_name), args)
> -    if result.get('result_url'):
> +    if server_results.get('result_url'):
>         print "Results available at:", server_results['result_url']
>     else:
>         print "Results available at: no URL available"
> 
> 
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits





More information about the llvm-commits mailing list