| author | |
| committer | |
| log | a890380b6aaf68f97a29f2224bcb06295c292596 |
| tree | a53cdd63322125c90a93677aabf547d65365efc8 |
| parent | ca87f55a7b8416e0f0922af7178a8774e81eba97 |
1 files changed, 5 insertions(+), 1 deletions(-)
std/os/linux.zig+5-1| ... | ... | @@ -811,5 +811,9 @@ pub fn timerfd_settime(fd: i32, flags: u32, new_value: &const itimerspec, old_va |
| 811 | 811 | } |
| 812 | 812 | |
| 813 | 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 | } |