Skip to content

Commit 395819c

Browse files
jyasskingraydon
authored andcommitted
Sort the XFAILed tests to make it easier to track changes.
1 parent a96c5f2 commit 395819c

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/Makefile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -352,19 +352,19 @@ MUT_BOX_XFAILS := $(addprefix test/run-pass/, \
352352
)
353353

354354
TEST_XFAILS_X86 := $(MUT_BOX_XFAILS) \
355-
test/run-pass/mlist-cycle.rs \
355+
test/run-pass/bind-obj-ctor.rs \
356356
test/run-pass/clone-with-exterior.rs \
357-
test/run-pass/obj-as.rs \
358-
test/run-pass/vec-slice.rs \
359357
test/run-pass/fn-lval.rs \
360358
test/run-pass/generic-fn-infer.rs \
361359
test/run-pass/generic-recursive-tag.rs \
360+
test/run-pass/mlist-cycle.rs \
362361
test/run-pass/mutable-vec-drop.rs \
363-
test/run-pass/bind-obj-ctor.rs \
364-
test/run-pass/vec-alloc-append.rs \
362+
test/run-pass/obj-as.rs \
365363
test/run-pass/task-comm.rs \
366-
test/compile-fail/bad-send.rs \
364+
test/run-pass/vec-alloc-append.rs \
365+
test/run-pass/vec-slice.rs \
367366
test/compile-fail/bad-recv.rs \
367+
test/compile-fail/bad-send.rs \
368368
test/compile-fail/infinite-tag-type-recursion.rs \
369369
test/compile-fail/infinite-vec-type-recursion.rs \
370370
test/compile-fail/writing-through-read-alias.rs
@@ -395,8 +395,8 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \
395395
export-non-interference.rs \
396396
exterior.rs \
397397
fn-lval.rs \
398-
foreach-nested.rs \
399398
foreach-nested-2.rs \
399+
foreach-nested.rs \
400400
foreach-put-structured.rs \
401401
foreach-simple-outer-slot.rs \
402402
foreach-simple.rs \
@@ -443,8 +443,8 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \
443443
obj-with-vec.rs \
444444
opeq.rs \
445445
output-slot-variants.rs \
446-
preempt.rs \
447446
pred.rs \
447+
preempt.rs \
448448
readalias.rs \
449449
rec-auto.rs \
450450
rec-extend.rs \
@@ -462,16 +462,17 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \
462462
tag.rs \
463463
tail-cps.rs \
464464
tail-direct.rs \
465+
task-comm.rs \
465466
threads.rs \
466467
tup.rs \
467468
type-sizes.rs \
468469
u32-decr.rs \
469470
u8-incr-decr.rs \
470471
u8-incr.rs \
471472
unit.rs \
472-
user.rs \
473473
use-import-export.rs \
474474
use-uninit.rs \
475+
user.rs \
475476
utf8.rs \
476477
vec-alloc-append.rs \
477478
vec-append.rs \
@@ -484,23 +485,22 @@ TEST_XFAILS_LLVM := $(addprefix test/run-pass/, \
484485
writealias.rs \
485486
yield.rs \
486487
yield2.rs \
487-
task-comm.rs \
488488
) \
489489
$(addprefix test/run-fail/, \
490490
explicit-fail.rs \
491491
fail.rs \
492492
linked-failure.rs \
493493
pred.rs \
494-
vec-overrun.rs \
495494
str-overrun.rs \
495+
vec-overrun.rs \
496496
vec-underrun.rs \
497497
) \
498498
$(addprefix test/compile-fail/, \
499-
rec-missing-fields.rs \
500-
bad-send.rs \
501499
bad-recv.rs \
500+
bad-send.rs \
502501
infinite-tag-type-recursion.rs \
503502
infinite-vec-type-recursion.rs \
503+
rec-missing-fields.rs \
504504
writing-through-read-alias.rs \
505505
)
506506

0 commit comments

Comments
 (0)