Skip to content

Commit

Permalink
test llvmpipe
Browse files Browse the repository at this point in the history
  • Loading branch information
mahkoh committed Apr 9, 2024
1 parent 47d1dff commit 66f619c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 46 deletions.
5 changes: 2 additions & 3 deletions .builds/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sources:
tasks:
- install: |
sudo pacman -Syu --noconfirm
sudo pacman -S --noconfirm rustup libinput pango mesa libxkbcommon xorg-xwayland adwaita-icon-theme libxcursor cmake
sudo pacman -S --noconfirm rustup libinput pango mesa libxkbcommon xorg-xwayland adwaita-icon-theme libxcursor cmake apitrace
rustup toolchain install stable
- configure: |
sudo rmmod bochs
Expand All @@ -16,5 +16,4 @@ tasks:
- test: |
cd jay
export RUST_BACKTRACE=1
export GALLIUM_DRIVER=softpipe
./target/debug/jay run-tests
apitrace trace --api egl ./target/debug/jay run-tests
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ cc = "1.0.86"
#[profile.dev.build-override]
#opt-level = 3

[profile.dev.package."jay-algorithms"]
opt-level = 3

[profile.dev.package."smallvec"]
opt-level = 3
# [profile.dev.package."jay-algorithms"]
# opt-level = 3
#
# [profile.dev.package."smallvec"]
# opt-level = 3

[features]
rc_tracking = []
Expand Down
76 changes: 38 additions & 38 deletions src/it/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,44 +90,44 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
}

tests! {
t0001_shm_formats,
t0002_window,
t0003_multi_window,
t0004_quit,
t0005_create_seat,
t0006_region,
t0007_subsurface,
t0008_map_focus,
t0009_tab_focus,
t0010_fullscreen_focus,
t0011_set_keymap,
t0012_subsurface_focus,
t0013_graphics_initialized,
t0014_container_scroll_focus,
t0015_scroll_partial,
t0016_scroll_ws,
t0017_remove_unused_ws,
t0018_click_to_active_ws,
t0019_natural_scrolling,
t0020_surface_offset,
t0021_preferred_buffer_scale,
t0022_toplevel_suspended,
t0023_xdg_activation,
t0024_foreign_toplevel_list,
t0025_dnd_focus_change,
t0026_output_transform,
t0027_input_region,
t0028_top_level_restacking,
t0029_double_click_float,
t0030_cursor_shape,
t0031_syncobj,
t0032_data_control,
t0033_float_size_memoization,
t0034_workspace_restoration,
t0035_scanout_feedback,
t0036_idle,
t0037_toplevel_drag,
t0038_subsurface_parent_state,
// t0001_shm_formats,
// t0002_window,
// t0003_multi_window,
// t0004_quit,
// t0005_create_seat,
// t0006_region,
// t0007_subsurface,
// t0008_map_focus,
// t0009_tab_focus,
// t0010_fullscreen_focus,
// t0011_set_keymap,
// t0012_subsurface_focus,
// t0013_graphics_initialized,
// t0014_container_scroll_focus,
// t0015_scroll_partial,
// t0016_scroll_ws,
// t0017_remove_unused_ws,
// t0018_click_to_active_ws,
// t0019_natural_scrolling,
// t0020_surface_offset,
// t0021_preferred_buffer_scale,
// t0022_toplevel_suspended,
// t0023_xdg_activation,
// t0024_foreign_toplevel_list,
// t0025_dnd_focus_change,
// t0026_output_transform,
// t0027_input_region,
// t0028_top_level_restacking,
// t0029_double_click_float,
// t0030_cursor_shape,
// t0031_syncobj,
// t0032_data_control,
// t0033_float_size_memoization,
// t0034_workspace_restoration,
// t0035_scanout_feedback,
// t0036_idle,
// t0037_toplevel_drag,
// t0038_subsurface_parent_state,
t0039_alpha_modifier,
}
}

0 comments on commit 66f619c

Please sign in to comment.