<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<!--[if !mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]--><style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman",serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.msonormal0, li.msonormal0, div.msonormal0
        {mso-style-name:msonormal;
        mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        font-size:12.0pt;
        font-family:"Times New Roman",serif;}
span.EmailStyle18
        {mso-style-type:personal-compose;
        font-family:"Times New Roman",serif;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">Zachary, the LNT tests don’t have a RUN line like the LIT tests do, so I can’t do that.  Thanks for the idea though – I’m exploring all options!<br>
<br>
-Troy <o:p></o:p></p>
<div class="MsoNormal" align="center" style="text-align:center">
<hr size="3" width="98%" align="center">
</div>
<div id="divRplyFwdMsg">
<p class="MsoNormal"><b><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black">From:</span></b><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black"> Zachary Turner <zturner@google.com><br>
<b>Sent:</b> Friday, November 16, 2018 4:40:07 PM<br>
<b>To:</b> Troy Johnson<br>
<b>Cc:</b> llvm-dev@lists.llvm.org<br>
<b>Subject:</b> Re: [llvm-dev] [LNT] How to set an env var before executing a test?</span>
<o:p></o:p></p>
<div>
<p class="MsoNormal"> <o:p></o:p></p>
</div>
</div>
<div>
<div>
<p class="MsoNormal">I'm not familiar with LNT, but I've written tests that set environment variables before.
<o:p></o:p></p>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">Just write your run line as:<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">RUN: env FOO=BAR cmd<o:p></o:p></p>
</div>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<div>
<div>
<p class="MsoNormal">On Fri, Nov 16, 2018 at 1:52 PM Troy Johnson via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<o:p></o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in">
<p class="MsoNormal">Is there a better example of an LNTBased test than test-suite/LNTBased/Examples/Simple?  It doesn't actually compile or execute anything, so it's not really a useful example, but it does look like a TestModule would allow me to modify the
 env via Python.<br>
<br>
-Troy<br>
<br>
> -----Original Message-----<br>
> From: llvm-dev <<a href="mailto:llvm-dev-bounces@lists.llvm.org" target="_blank">llvm-dev-bounces@lists.llvm.org</a>> On Behalf Of Troy Johnson<br>
> via llvm-dev<br>
> Sent: Friday, November 16, 2018 1:21 PM<br>
> To: <a href="mailto:chris.matthews@apple.com" target="_blank">chris.matthews@apple.com</a><br>
> Cc: <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> Subject: Re: [llvm-dev] [LNT] How to set an env var before executing a test?<br>
> <br>
> So you're referring to llvm_test_prepare?  There aren't many examples of that<br>
> being used.  I tried adding a call to it in my test directory's CMakeLists.txt like so:<br>
> <br>
> llvm_test_prepare(WORKDIR ${CMAKE_CURRENT_BINARY_DIR}<br>
>   export MY_VAR=42<br>
> )<br>
> <br>
> In the hopes that something would happen, even an error, but it had no effect.<br>
> Nothing at <a href="http://llvm.org/docs/lnt/tests.html" target="_blank">http://llvm.org/docs/lnt/tests.html</a> explains how to use these cmake<br>
> macros, so I'm looking at test-<br>
> suite/External/SPEC/CINT2000/175.vpr/CMakeLists.txt for an example.  The<br>
> tests that I have added are under a subdirectory of test-suite/SingleSource, but<br>
> the comment at the top of test-suite/cmake/modules/SingleMultiSource.cmake<br>
> has me worried that nothing new is supposed to go in there.  Maybe I should<br>
> move everything under test-suite/External and more closely mimic these SPEC<br>
> CMakeLists.txt?<br>
> <br>
> -Troy<br>
> <br>
> > -----Original Message-----<br>
> > From: <a href="mailto:chris.matthews@apple.com" target="_blank">chris.matthews@apple.com</a> <<a href="mailto:chris.matthews@apple.com" target="_blank">chris.matthews@apple.com</a>><br>
> > Sent: Friday, November 16, 2018 12:26 PM<br>
> > To: Troy Johnson <<a href="mailto:troyj@cray.com" target="_blank">troyj@cray.com</a>><br>
> > Cc: <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> > Subject: Re: [llvm-dev] [LNT] How to set an env var before executing a test?<br>
> ><br>
> > It does not. The prefers way to customize is to use a cmake define.<br>
> ><br>
> > Briefly, LNT is first running cmake, then make to build the tests.<br>
> > Then running Lit to execute them and collect the performance data.<br>
> ><br>
> > I believe via cmake there are ways to change both the test builds and<br>
> execution.<br>
> ><br>
> > > On Nov 16, 2018, at 9:20 AM, Troy Johnson via llvm-dev <llvm-<br>
> > <a href="mailto:dev@lists.llvm.org" target="_blank">dev@lists.llvm.org</a>> wrote:<br>
> > ><br>
> > > Does the LNT test-suite provide a way to have an environment<br>
> > > variable set<br>
> > when executing a test?  I can set it outside of LNT (i.e. have it in<br>
> > my environment when LNT is launched) and that works fine, but there<br>
> > does not appear to be a way to set it as part of a test’s<br>
> > configuration.  There are some lit.local.cfg files scattered<br>
> > throughout the test-suite repository, but messing with os.environ in<br>
> > those seems to have no effect (and I’m not quite sure what LNT is doing with<br>
> LIT configs anyway).<br>
> > ><br>
> > > -Troy<br>
> > > _______________________________________________<br>
> > > LLVM Developers mailing list<br>
> > > <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> > > <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" target="_blank">
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
> <br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" target="_blank">
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><o:p></o:p></p>
</blockquote>
</div>
</div>
</div>
</body>
</html>