mirror of
https://github.com/oven-sh/bun
synced 2026-02-17 22:32:06 +00:00
remove aarch64 asan, llvm crashes
This commit is contained in:
@@ -1398,7 +1398,10 @@ function getRelevantTests(cwd, testModifiers, testExpectations) {
|
||||
}
|
||||
|
||||
const skipExpectations = testExpectations
|
||||
.filter(({ modifiers, expectations }) => testModifiers.some(modifier => modifiers.includes(modifier)))
|
||||
.filter(
|
||||
({ modifiers, expectations }) =>
|
||||
!modifiers?.length || testModifiers.some(modifier => modifiers?.includes(modifier)),
|
||||
)
|
||||
.map(({ filename }) => filename.replace("test/", ""));
|
||||
if (skipExpectations.length) {
|
||||
const skippedTests = availableTests.filter(testPath => skipExpectations.some(filter => isMatch(testPath, filter)));
|
||||
|
||||
Reference in New Issue
Block a user