We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e315b1a commit ddc2b8dCopy full SHA for ddc2b8d
1 file changed
tests/executable.rs
@@ -931,7 +931,7 @@ fn bad_v2_position_build() {
931
932
/// Ensures that watch command succeeds, and when a file is changed while running it rebuilds
933
/// periodically
934
-#[cfg(feature = "serialization")]
+#[cfg(all(feature = "serialization", not(target_arch = "mips")))]
935
#[test]
936
fn v2_watch_succeeds() {
937
let (_tempdir, temppath) = setup_v2();
@@ -958,10 +958,10 @@ fn v2_watch_succeeds() {
958
if modified >= 3 {
959
break;
960
}
961
-
+
962
{
963
let mut file = File::create(&input).unwrap();
964
- writeln!(file, "New Text").unwrap();
+ writeln!(file, "New Text {}", modified).unwrap();
965
966
967
let new_mod = output.metadata().and_then(|meta| meta.modified()).unwrap();
0 commit comments