Skip to content

Commit fb2765e

Browse files
committed
rusti: Disable tests on macos harder
1 parent 7f55fc3 commit fb2765e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/librusti/rusti.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ mod tests {
538538

539539
#[test]
540540
// FIXME: #7220 rusti on 32bit mac doesn't work.
541-
#[cfg(not(and(target_word_size=32,
542-
target_os="mac")))]
541+
#[cfg(not(target_word_size="32",
542+
target_os="macos"))]
543543
fn run_all() {
544544
// FIXME(#7071):
545545
// By default, unit tests are run in parallel. Rusti, on the other hand,
@@ -652,8 +652,8 @@ mod tests {
652652

653653
#[test]
654654
// FIXME: #7220 rusti on 32bit mac doesn't work.
655-
#[cfg(not(and(target_word_size=32,
656-
target_os="mac")))]
655+
#[cfg(not(target_word_size="32",
656+
target_os="macos"))]
657657
fn exit_quits() {
658658
let mut r = repl();
659659
assert!(r.running);

0 commit comments

Comments
 (0)