mirror of
https://github.com/chronotope/chrono.git
synced 2025-09-27 13:01:37 +00:00
23 lines
746 B
Rust
23 lines
746 B
Rust
#![cfg(all(windows, feature = "clock", feature = "std"))]
|
|
|
|
use std::fs;
|
|
use windows_bindgen::bindgen;
|
|
|
|
#[test]
|
|
fn gen_bindings() {
|
|
let input = "src/offset/local/win_bindings.txt";
|
|
let output = "src/offset/local/win_bindings.rs";
|
|
let existing = fs::read_to_string(output).unwrap();
|
|
|
|
let log = bindgen(["--etc", input]).unwrap();
|
|
eprintln!("{}", log);
|
|
|
|
// Check the output is the same as before.
|
|
// Depending on the git configuration the file may have been checked out with `\r\n` newlines or
|
|
// with `\n`. Compare line-by-line to ignore this difference.
|
|
let new = fs::read_to_string(output).unwrap();
|
|
if !new.lines().eq(existing.lines()) {
|
|
panic!("generated file `{}` is changed.", output);
|
|
}
|
|
}
|