Skip to content

Commit 3a45c70

Browse files
committed
Fix CI on android and NetBSD. Fixup to 3df7a2a.
1 parent 3df7a2a commit 3a45c70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/docker/x86_64-rumprun-netbsd/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn find_ok(input: &mut Read, tx: mpsc::Sender<()>) {
4848
let line = line.unwrap();
4949
println!("{}", line);
5050
if (line.starts_with("PASSED ") && line.contains(" tests")) ||
51-
line.starts_with("test result: ok "){
51+
line.starts_with("test result: ok"){
5252
tx.send(()).unwrap();
5353
}
5454
}

ci/runtest-android.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ fn main() {
3636
let stdout = String::from_utf8_lossy(&output.stdout);
3737
let passed = stdout.lines().find(|l|
3838
(l.starts_with("PASSED ") && l.contains(" tests")) ||
39-
l.starts_with("test result: ok ")
39+
l.starts_with("test result: ok")
4040
).unwrap_or_else(|| {
4141
panic!("failed to find successful test run");
4242
});

0 commit comments

Comments
 (0)