added zig build lock

This commit is contained in:
Anton-4 2023-03-24 17:24:10 +01:00
parent c7a3d48817
commit c48c8f6d2c
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
3 changed files with 7 additions and 0 deletions

View file

@ -1359,6 +1359,7 @@ mod test {
use crate::preprocessed_host_filename;
use indoc::indoc;
use serial_test::serial;
use target_lexicon::Triple;
use super::*;
@ -1834,12 +1835,14 @@ mod test {
}
#[cfg(windows)]
#[serial(zig_build)]
#[test]
fn basics_windows() {
assert_eq!("Hello, 234567 32 1 3!\n", windows_test(test_basics))
}
#[test]
#[serial(zig_build)]
#[ignore]
fn basics_wine() {
assert_eq!("Hello, 234567 32 1 3!\n", wine_test(test_basics))
@ -1876,12 +1879,14 @@ mod test {
}
#[cfg(windows)]
#[serial(zig_build)]
#[test]
fn app_internal_relocations_windows() {
assert_eq!("Hello foo\n", windows_test(test_internal_relocations))
}
#[ignore]
#[serial(zig_build)]
#[test]
fn app_internal_relocations_wine() {
assert_eq!("Hello foo\n", wine_test(test_internal_relocations))