<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in TestHelp.test</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>88591aa0ca7e4d99da353d49f91ea63e43fb55e0 - [lldb] Remove lldb-repro utility</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/lldb/test/Shell/Driver/TestHelp.test#88591aa0ca7e4d99da353d49f91ea63e43fb55e0</link>
        <description>[lldb] Remove lldb-repro utilityRemove lldb-repro which was used to run the test suite against areproducer. The corresponding functionality has been removed from LLDBso there&apos;s no need for the tool anymore.

            List of files:
            /llvm-project/lldb/test/Shell/Driver/TestHelp.test</description>
        <pubDate>Thu, 31 Oct 2024 17:39:03 +0000</pubDate>
        <dc:creator>Jonas Devlieghere &lt;jonas@devlieghere.com&gt;</dc:creator>
    </item>
<item>
        <title>d3173f4ab61c17337908eb7df3f1c515ddcd428c - [lldb] Remove -d(ebug) mode from the lldb driver (#83330)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/lldb/test/Shell/Driver/TestHelp.test#d3173f4ab61c17337908eb7df3f1c515ddcd428c</link>
        <description>[lldb] Remove -d(ebug) mode from the lldb driver (#83330)The -d(ebug) option broke 5 years ago when I migrated the driver tolibOption. Since then, we were never check if the option is set. We wereincorrectly toggling the internal variable (m_debug_mode) based onOPT_no_use_colors instead.Given that the functionality doesn&apos;t seem particularly useful and nobodynoticed it has been broken for 5 years, I&apos;m just removing the flag.

            List of files:
            /llvm-project/lldb/test/Shell/Driver/TestHelp.test</description>
        <pubDate>Wed, 28 Feb 2024 23:23:55 +0000</pubDate>
        <dc:creator>Jonas Devlieghere &lt;jonas@devlieghere.com&gt;</dc:creator>
    </item>
<item>
        <title>70599d70273b671b1b2e6a0e0b9c11e413209647 - [lldb] Remove LLDB reproducers</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/lldb/test/Shell/Driver/TestHelp.test#70599d70273b671b1b2e6a0e0b9c11e413209647</link>
        <description>[lldb] Remove LLDB reproducersThis patch removes the remaining reproducer code. The SBReproducer classremains for ABI stability but is just an empty shell. This completes theremoval process outlined on the mailing list [1].[1] https://lists.llvm.org/pipermail/lldb-dev/2021-September/017045.html

            List of files:
            /llvm-project/lldb/test/Shell/Driver/TestHelp.test</description>
        <pubDate>Mon, 19 Sep 2022 17:47:09 +0000</pubDate>
        <dc:creator>Jonas Devlieghere &lt;jonas@devlieghere.com&gt;</dc:creator>
    </item>
<item>
        <title>fa1260697ec80ac0586d67c0de8758818ca865c0 - [lldb] Remove reproducer replay functionality</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/lldb/test/Shell/Driver/TestHelp.test#fa1260697ec80ac0586d67c0de8758818ca865c0</link>
        <description>[lldb] Remove reproducer replay functionalityThis is part of a bigger rework of the reproducer feature. See [1] formore details.[1] https://lists.llvm.org/pipermail/lldb-dev/2021-September/017045.html

            List of files:
            /llvm-project/lldb/test/Shell/Driver/TestHelp.test</description>
        <pubDate>Fri, 17 Dec 2021 22:45:24 +0000</pubDate>
        <dc:creator>Jonas Devlieghere &lt;jonas@devlieghere.com&gt;</dc:creator>
    </item>
<item>
        <title>bbef51eb43c2e8f8e36fbbc0d0b4cca75b6f0863 - [lldb] make it easier to find LLDB&apos;s python</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/lldb/test/Shell/Driver/TestHelp.test#bbef51eb43c2e8f8e36fbbc0d0b4cca75b6f0863</link>
        <description>[lldb] make it easier to find LLDB&apos;s pythonIt is surprisingly difficult to write a simple python script thatcan reliably `import lldb` without failing, or crashing.   I&apos;mcurrently resorting to convolutions like this:    def find_lldb(may_reexec=False):		if prefix := os.environ.get(&apos;LLDB_PYTHON_PREFIX&apos;):			if os.path.realpath(prefix) != os.path.realpath(sys.prefix):				raise Exception(&quot;cannot import lldb.\n&quot;					f&quot;  sys.prefix should be: {prefix}\n&quot;					f&quot;  but it is: {sys.prefix}&quot;)		else:			line1, line2 = subprocess.run(				[&apos;lldb&apos;, &apos;-x&apos;, &apos;-b&apos;, &apos;-o&apos;, &apos;script print(sys.prefix)&apos;],				encoding=&apos;utf8&apos;, stdout=subprocess.PIPE,				check=True).stdout.strip().splitlines()			assert line1.strip() == &apos;(lldb) script print(sys.prefix)&apos;			prefix = line2.strip()			os.environ[&apos;LLDB_PYTHON_PREFIX&apos;] = prefix		if sys.prefix != prefix:			if not may_reexec:				raise Exception(					&quot;cannot import lldb.\n&quot; +					f&quot;  This python, at {sys.prefix}\n&quot;					f&quot;  does not math LLDB&apos;s python at {prefix}&quot;)			os.environ[&apos;LLDB_PYTHON_PREFIX&apos;] = prefix			python_exe = os.path.join(prefix, &apos;bin&apos;, &apos;python3&apos;)			os.execl(python_exe, python_exe, *sys.argv)		lldb_path = subprocess.run([&apos;lldb&apos;, &apos;-P&apos;],			check=True, stdout=subprocess.PIPE,				encoding=&apos;utf8&apos;).stdout.strip()		sys.path = [lldb_path] + sys.pathThis patch aims to replace all that with:  #!/usr/bin/env lldb-python  import lldb  ...... by adding the following features:* new command line option: --print-script-interpreter-info.  This   prints language-specific information about the script interpreter   in JSON format.* new tool (unix only): lldb-python which finds python and exec&apos;s it.Reviewed By: JDevlieghereDifferential Revision: https://reviews.llvm.org/D112973

            List of files:
            /llvm-project/lldb/test/Shell/Driver/TestHelp.test</description>
        <pubDate>Wed, 10 Nov 2021 18:33:33 +0000</pubDate>
        <dc:creator>Lawrence D&apos;Anna &lt;lawrence_danna@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>382f6d37a1f2ec472a1f869be2d33078fe6ea8da - [lldb/Test] Add test for man page and lldb --help output</title>
        <link>http://src.rcs.uwaterloo.ca:8080/source/history/llvm-project/lldb/test/Shell/Driver/TestHelp.test#382f6d37a1f2ec472a1f869be2d33078fe6ea8da</link>
        <description>[lldb/Test] Add test for man page and lldb --help output

            List of files:
            /llvm-project/lldb/test/Shell/Driver/TestHelp.test</description>
        <pubDate>Mon, 01 Jun 2020 20:04:32 +0000</pubDate>
        <dc:creator>Jonas Devlieghere &lt;jonas@devlieghere.com&gt;</dc:creator>
    </item>
</channel>
</rss>
