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

1
Cargo.lock generated
View File

@ -3502,6 +3502,7 @@ dependencies = [
"roc_reporting",
"roc_target",
"serde",
"serial_test",
"target-lexicon",
"tempfile",
]

View File

@ -36,3 +36,4 @@ tempfile.workspace = true
[dev-dependencies]
indoc.workspace = true
libc.workspace = true
serial_test.workspace = true

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))