<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On 22 April 2017 at 23:57, Kamil Rytarowski via lldb-dev <span dir="ltr"><<a href="mailto:lldb-dev@lists.llvm.org" target="_blank">lldb-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello,<br>
<br>
I'm in process of attaching new build machine lldb-amd64-ninja-netbsd8.<br>
<br>
It will run prerelease of NetBSD/amd64 8.0 (as of today 7.99.70) with<br>
the GNU toolchain.<br>
<br>
Once the new one setup will be in operation, I will upgrade the old one<br>
to 7.99.70 (& retain the same name), switch the to the staging cluster<br>
<a href="http://lab.llvm.org:8014/" rel="noreferrer" target="_blank">http://lab.llvm.org:8014/</a> and turn on execution of tests.<br>
<br>
Am I right that in order to turn tests I need to switch "runTest=False"<br>
to "runTest=True" in buildbot/osuosl/master/config/<wbr>builders.py?<br></blockquote><div><br></div><div>Affirmative.</div><div><br></div><div>As you are using the "scripted" build factory, you'll also need to create a  test_cfg.json in your scripts folder on the build slave, which describes the kind of tests you want to run:</div><div>For example, the linux build bot has this in the file:</div><div><div>{</div><div>    "test1": "local,clang-3.5,i386",</div><div>    "test2": "local,clang-3.5,x86_64",</div><div>    "test3": "local,totclang,i386",</div><div>    "test4": "local,totclang,x86_64",</div><div>    "test5": "local,/lldb-buildbot/bin/gcc-4.9.2/bin/gcc,i386",</div><div>    "test6": "local,/lldb-buildbot/bin/gcc-4.9.2/bin/gcc,x86_64"</div><div>}</div></div><div>but a single test line would probably be enough for you.</div><div>Then, the master will invoke a script "test.sh" with the test config argument: (e.g., ./test.sh local,clang-3.5,i386) and your script should run the tests.</div><div><br></div><div>let me know if you run into problems,</div><div>pl</div></div></div></div>