<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in modules-full-by-mod-name.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>b58a420f - [Tooling/DependencyScanning] Rename refactorings towards transitioning dependency scanning to use pre-lexed preprocessor directive tokens</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp#b58a420f</link>
        <description>[Tooling/DependencyScanning] Rename refactorings towards transitioning dependency scanning to use pre-lexed preprocessor directive tokensThis is first of a series of patches for making the special lexing for dependency scanning a first-class feature of the `Preprocessor` and `Lexer`.This patch only includes NFC renaming changes to make reviewing of the functionality changing parts easier.Differential Revision: https://reviews.llvm.org/D125484

            List of files:
            /llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp</description>
        <pubDate>Thu, 12 May 2022 04:21:17 +0000</pubDate>
        <dc:creator>Argyrios Kyrtzidis &lt;kyrtzidis@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>6bb836af - Revert &quot;[clang][deps] NFC: De-duplicate clang-cl tests&quot;</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp#6bb836af</link>
        <description>Revert &quot;[clang][deps] NFC: De-duplicate clang-cl tests&quot;This reverts commit 30cb49b44e4e2af2e0627b2aa33df0ba57ab9e55.It caused test failures on Fuchsia Toolchain Mac builds:https://luci-milo.appspot.com/ui/p/fuchsia/builders/toolchain.ci/clang-mac-x64/b8818888168677577537/overview

            List of files:
            /llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp</description>
        <pubDate>Thu, 24 Mar 2022 18:10:08 +0000</pubDate>
        <dc:creator>Gulfem Savrun Yeniceri &lt;gulfem@google.com&gt;</dc:creator>
    </item>
<item>
        <title>30cb49b4 - [clang][deps] NFC: De-duplicate clang-cl tests</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp#30cb49b4</link>
        <description>[clang][deps] NFC: De-duplicate clang-cl testsIn D92191, a bunch of test cases were added to check `clang-scan-deps` works in `clang-cl` mode as well.We don&apos;t need to duplicate all test cases, though. Testing the few special cases we have in `clang-scan-deps` for `clang-cl` should be good enough:1. Deducing output path (and therefore target name in our make output).2. Ignoring `-Xclang` arguments in step 1.3. Deducing resource directory by invoking the compiler executuable.This test de-duplicates the extra clang-cl test cases.Reviewed By: dexonsmith, saudiDifferential Revision: https://reviews.llvm.org/D121812

            List of files:
            /llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp</description>
        <pubDate>Wed, 23 Mar 2022 14:29:49 +0000</pubDate>
        <dc:creator>Jan Svoboda &lt;jan_svoboda@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>c4b13f7a - [clang][deps] Simplify PREFIX definitions in tests</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp#c4b13f7a</link>
        <description>[clang][deps] Simplify PREFIX definitions in testsInstead of outputting the test directory into the JSON result file, parsing it with `FileCheck` and then potentially stripping it, simply use `FileCheck`&apos;s `-D` option.Note that we use `%/t` instead of `%t` in order to normalize to forward slashes on Windows, which matches what we do with `sed &apos;s:\\\\\?:/:g&apos;`.Differential Revision: https://reviews.llvm.org/D121516

            List of files:
            /llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp</description>
        <pubDate>Sat, 12 Mar 2022 15:44:29 +0000</pubDate>
        <dc:creator>Jan Svoboda &lt;jan_svoboda@apple.com&gt;</dc:creator>
    </item>
<item>
        <title>fbf52caf - [AIX] Disable tests that fail because of no 64-bit XCOFF object file support</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp#fbf52caf</link>
        <description>[AIX] Disable tests that fail because of no 64-bit XCOFF object file supportThe modified tests fail because 64-bit XCOFF object files are not currently supported on AIX. This patch disables these tests on 64-bit AIX for now.This patch is similar to D111887 except the failures on this patch are on a 64-bit build.Reviewed By: shchenz, #powerpcDifferential Revision: https://reviews.llvm.org/D113049

            List of files:
            /llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp</description>
        <pubDate>Sun, 09 Jan 2022 17:20:38 +0000</pubDate>
        <dc:creator>Jake Egan &lt;jakeegan10@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>17c2948d - [clang-scan-deps] Add an API for clang dependency scanner to perform</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp#17c2948d</link>
        <description>[clang-scan-deps] Add an API for clang dependency scanner to performmodule lookup by name aloneThis removes the need to create a fake source file that imports amodule.rdar://64538073Differential Revision: https://reviews.llvm.org/D109485

            List of files:
            /llvm-project-15.0.7/clang/test/ClangScanDeps/modules-full-by-mod-name.cpp</description>
        <pubDate>Thu, 09 Sep 2021 05:24:07 +0000</pubDate>
        <dc:creator>Akira Hatanaka &lt;ahatanaka@apple.com&gt;</dc:creator>
    </item>
</channel>
</rss>
