We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8870f45 commit 1bf710dCopy full SHA for 1bf710d
build_system/tests.rs
@@ -272,6 +272,17 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
272
run_cmd.current_dir(IMAGE.target_dir(&runner.dirs));
273
274
spawn_and_wait(run_cmd);
275
+
276
+ let expected =
277
+ fs::read(IMAGE.source_dir(&runner.dirs).join("examples").join("fractal.png"))
278
+ .unwrap();
279
+ let output = fs::read(IMAGE.target_dir(&runner.dirs).join("fractal.png")).unwrap();
280
281
+ if output != expected {
282
+ println!("Output files don't match!");
283
284
+ std::process::exit(1);
285
+ }
286
}
287
}),
288
TestCase::custom("test.blake3", &|runner| {
0 commit comments