Skip to content

Commit 17bcdea

Browse files
committed
Update test/sorting.jl
1 parent b7ff91a commit 17bcdea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/sorting.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ end
188188
flastlinindices(x) = LinearIndices(x)[findlast(x)]
189189
flastlinindices(f, x) = LinearIndices(x)[findlast(f, x)]
190190

191-
@test ffirstlinindices(x) @jit(findfirst(x_ra)) broken = contains(
191+
@test ffirstlinindices(x) @jit(findfirst(x_ra)) skip = contains(
192192
string(Reactant.devices()[1]), "TPU"
193193
)
194-
@test flastlinindices(x) @jit(findlast(x_ra)) broken = contains(
194+
@test flastlinindices(x) @jit(findlast(x_ra)) skip = contains(
195195
string(Reactant.devices()[1]), "TPU"
196196
)
197197

@@ -202,10 +202,10 @@ end
202202
]
203203
x_ra = Reactant.to_rarray(x)
204204

205-
@test ffirstlinindices(iseven, x) @jit(findfirst(iseven, x_ra)) broken = contains(
205+
@test ffirstlinindices(iseven, x) @jit(findfirst(iseven, x_ra)) skip = contains(
206206
string(Reactant.devices()[1]), "TPU"
207207
)
208-
@test flastlinindices(iseven, x) @jit(findlast(iseven, x_ra)) broken = contains(
208+
@test flastlinindices(iseven, x) @jit(findlast(iseven, x_ra)) skip = contains(
209209
string(Reactant.devices()[1]), "TPU"
210210
)
211211
end

0 commit comments

Comments
 (0)