[clang] [clang][test] Add .cuh as a recognized extension for lit test files (PR #124080)
https://github.com/HighCommander4 closed https://github.com/llvm/llvm-project/pull/124080 ___ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang] [clang][test] Add .cuh as a recognized extension for lit test files (PR #124080)
https://github.com/Artem-B approved this pull request. https://github.com/llvm/llvm-project/pull/124080 ___ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang] [clang][test] Add .cuh as a recognized extension for lit test files (PR #124080)
llvmbot wrote: @llvm/pr-subscribers-clang Author: Nathan Ridge (HighCommander4) Changes Fixes https://github.com/llvm/llvm-project/issues/124079 --- Full diff: https://github.com/llvm/llvm-project/pull/124080.diff 1 Files Affected: - (modified) clang/test/lit.cfg.py (+1) ``diff diff --git a/clang/test/lit.cfg.py b/clang/test/lit.cfg.py index 7e7934d5fe0f5f..e4b39c4f715971 100644 --- a/clang/test/lit.cfg.py +++ b/clang/test/lit.cfg.py @@ -33,6 +33,7 @@ ".m", ".mm", ".cu", +".cuh", ".hip", ".hlsl", ".ll", `` https://github.com/llvm/llvm-project/pull/124080 ___ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
[clang] [clang][test] Add .cuh as a recognized extension for lit test files (PR #124080)
https://github.com/HighCommander4 created https://github.com/llvm/llvm-project/pull/124080 Fixes https://github.com/llvm/llvm-project/issues/124079 >From dbdb0ed35cc33f7e4d6076812faaeef9437ddcc6 Mon Sep 17 00:00:00 2001 From: Nathan Ridge Date: Thu, 23 Jan 2025 01:34:14 -0500 Subject: [PATCH] [clang][test] Add .cuh as a recognized extension for lit test files --- clang/test/lit.cfg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/clang/test/lit.cfg.py b/clang/test/lit.cfg.py index 7e7934d5fe0f5f..e4b39c4f715971 100644 --- a/clang/test/lit.cfg.py +++ b/clang/test/lit.cfg.py @@ -33,6 +33,7 @@ ".m", ".mm", ".cu", +".cuh", ".hip", ".hlsl", ".ll", ___ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
