| ... | @@ -811,5 +811,9 @@ pub fn timerfd_settime(fd: i32, flags: u32, new_value: &const itimerspec, old_va | ... | @@ -811,5 +811,9 @@ pub fn timerfd_settime(fd: i32, flags: u32, new_value: &const itimerspec, old_va |
| 811 | } | 811 | } |
| 812 | | 812 | |
| 813 | test "import linux_test" { | 813 | test "import linux_test" { |
| 814 | _ = @import("linux_test.zig"); | 814 | // TODO lazy analysis should prevent this test from being compiled on windows, but |
| | 815 | // it is still compiled on windows |
| | 816 | if (builtin.os == builtin.Os.linux) { |
| | 817 | _ = @import("linux_test.zig"); |
| | 818 | } |
| 815 | } | 819 | } |