Skip to content

Commit

Permalink
Update BUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses authored Sep 10, 2024
1 parent 7b4f533 commit 0d950e7
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions enzyme/test/Integration/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

load("@llvm-project//llvm:lit_test.bzl", "lit_test")

exclude_tests = [
"**/*omp*.c",
]

stdlib_tests = [
"**/gh_issue_1904.cpp",
"**/CppSugar/sret.cpp",
"**/ReverseMode/fbuff.cpp",
"**/*blas*.cpp",
"**/*ForwardMode/rosenbrock.cpp",
"**/*ReverseMode/map.cpp",
"**/*ReverseMode/multivecmax.cpp",
"**/*ReverseMode/vecmax.cpp",
"**/*Sparse/*",
"**/*eigen*.cpp",
"**/*integrate*.cpp",
]

[
lit_test(
name = "%s.test" % src,
Expand All @@ -18,30 +36,12 @@ load("@llvm-project//llvm:lit_test.bzl", "lit_test")
"@llvm-project//llvm:lli",
"@llvm-project//llvm:not",
] + glob(["**/*.h"]),
driver = "//test:run_lit",
toolchains = [
"//tools/cpp:cc_flags",
"//tools/cpp:current_cc_toolchain",
],
)
for src in glob(
[
"**/*.c",
"**/*.cpp",
],
exclude = [
"**/*omp*.c",
"**/gh_issue_1904.cpp",
"**/CppSugar/sret.cpp",
"**/ReverseMode/fbuff.cpp",
"**/*blas*.cpp",
"**/*ForwardMode/rosenbrock.cpp",
"**/*ReverseMode/map.cpp",
"**/*ReverseMode/multivecmax.cpp",
"**/*ReverseMode/vecmax.cpp",
"**/*Sparse/*",
"**/*eigen*.cpp",
"**/*integrate*.cpp",
],
exclude = exclude_tests,
)
]

0 comments on commit 0d950e7

Please sign in to comment.