<div dir="ltr"><div>Using swift module in REPL:</div><div><br></div><div><br></div><div>Toolchain: January 4, 2017</div><div>Platform: Ubuntu 16.04</div><div><br></div><div>Add this at end of Package.swift:</div><div><br></div><div>```</div><div>products += [Product(name: &quot;Result&quot;, type: .Library(.Dynamic), modules: &quot;Result&quot;)]</div><div>```</div><div><br></div><div>$ swift build</div><div>$ swift -I .build/debug -L .build/debug -lResult -I /usr/lib/clang/3.8/include</div><div>Welcome to Swift version 3.1-dev (LLVM 217eb6c2b6, Clang 34a98ce92e, Swift 1eb5648c46). Type :help for assistance.</div><div>  1&gt; import Result</div><div>  2&gt; let a = Result&lt;String, AnyError&gt;(&quot;a&quot;)</div><div>a: Result.Result&lt;String, Result.AnyError&gt; = success {</div><div>  success = &quot;a&quot;</div><div>}</div><div>  3&gt; a.dematerialize()</div><div>$R0: String = &quot;a&quot;</div><div><br></div><div>PS: Make sure you pass these flags when launching docker bash: &quot;--security-opt seccomp=unconfined&quot;</div><div><br></div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 5, 2017 at 3:33 PM, Robert Atkins via swift-users <span dir="ltr">&lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
I&#39;m trying to solve a simple (?) problem where a test suite runs fine on<br>
macOS but fails on Linux<br>
(<a href="https://github.com/antitypical/Result/pull/210#pullrequestreview-14963305" rel="noreferrer" target="_blank">https://github.com/<wbr>antitypical/Result/pull/210#<wbr>pullrequestreview-14963305</a>).<br>
I&#39;ve downloaded and installed the Swift Linux Docker image<br>
(<a href="https://ashfurrow.com/blog/swift-on-linux/" rel="noreferrer" target="_blank">https://ashfurrow.com/blog/<wbr>swift-on-linux/</a>) and got the project<br>
building and testing, and, mercifully, I get the same failure locally as<br>
I&#39;m getting on Travis CI. But at this point I&#39;m stuck.<br>
<br>
1) I can&#39;t get the SPM-built module the project produces working<br>
properly in the Swift REPL in order to just play around with it<br>
(<a href="https://bugs.swift.org/browse/SR-1191" rel="noreferrer" target="_blank">https://bugs.swift.org/<wbr>browse/SR-1191</a>). Can anyone help me with this?<br>
<br>
2a) How do I use LLDB to set a breakpoint in a test method and step into<br>
its execution so I can trace through the source of the test failure?<br>
Saying &quot;lldb swift test&quot; does something, but doesn&#39;t know about any of<br>
the lines I&#39;m trying to set a breakpoint on—I suspect it thinks I&#39;m<br>
trying to set breakpoints in the swift binary itself, rather than the<br>
test suite?<br>
<br>
2b) Saying &quot;swift -warnings-as-errors test&quot; doesn&#39;t seem to do what I<br>
want, complaining about &quot;no such file or directory: &#39;test&#39;&quot;, whereas<br>
&quot;swift test&quot; works fine. Is there a way to pass flags to the swift<br>
interpreter when it runs tests?<br>
<br>
Thanks, Robert.<br>
______________________________<wbr>_________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-users</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">Ankit<br><br></div>
</div>