diff options
author | Fredrik Noren <fredrik.jw.noren@gmail.com> | 2016-01-09 14:31:56 -0500 |
---|---|---|
committer | Fredrik Noren <fredrik.jw.noren@gmail.com> | 2016-01-09 14:31:56 -0500 |
commit | a5de08485685230cd1197cbb5ee059a10b34710e (patch) | |
tree | 44969d34fa1406b2b528030d0e59fb18a85e2c1c /tests | |
parent | c344f36e93e44f6d8189f904053c585fd9dd8ccc (diff) | |
download | glutin-a5de08485685230cd1197cbb5ee059a10b34710e.tar.gz glutin-a5de08485685230cd1197cbb5ee059a10b34710e.zip |
Only run headless test on osx for now
Diffstat (limited to 'tests')
-rw-r--r-- | tests/headless.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/headless.rs b/tests/headless.rs index 57e0275..c8064c7 100644 --- a/tests/headless.rs +++ b/tests/headless.rs @@ -9,7 +9,7 @@ mod gl { use gl::types::*; -#[cfg(not(target_os = "linux"))] +#[cfg(target_os = "macos")] #[test] fn test_headless() { let width: i32 = 256; |