Skip to content

Commit b9c5840

Browse files
committed
Add differential testing harness
This runs wgsl shaders and rust shaders and compares the output. If the output differs, the test fails. Differential testing is better than snapshot testing or golden file testing as there are no reference files to get outdated.
1 parent 698f10a commit b9c5840

File tree

323 files changed

+3571
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+3571
-166
lines changed

.cargo/config.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[alias]
22
compiletest = "run --release -p compiletests --"
3+
difftest = "run --release -p difftests --"
34

45
[target.'cfg(all())']
56
rustflags = [

.github/workflows/ci.yaml

+15-2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ jobs:
4242
- if: ${{ runner.os == 'Linux' }}
4343
name: Linux - Install native dependencies
4444
run: sudo apt install libwayland-cursor0 libxkbcommon-dev libwayland-dev
45+
- if: ${{ runner.os == 'Linux' }}
46+
name: Install xvfb, llvmpipe and lavapipe
47+
run: |
48+
sudo apt-get update -y -qq
49+
sudo add-apt-repository ppa:kisak/turtle -y
50+
sudo apt-get update
51+
sudo apt install -y xvfb libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers
4552
# cargo version is a random command that forces the installation of rust-toolchain
4653
- name: install rust-toolchain
4754
run: cargo version
@@ -64,6 +71,10 @@ jobs:
6471
if: ${{ matrix.target != 'aarch64-linux-android' }}
6572
run: cargo run -p compiletests --release --no-default-features --features "use-installed-tools" -- --target-env vulkan1.1,vulkan1.2,spv1.3
6673

74+
- name: difftest
75+
if: ${{ matrix.target != 'aarch64-linux-android' }}
76+
run: cargo run -p difftests --release --no-default-features --features "use-installed-tools"
77+
6778
- name: workspace test
6879
if: ${{ matrix.target != 'aarch64-linux-android' }}
6980
run: cargo test --release
@@ -145,8 +156,10 @@ jobs:
145156
run: cargo fetch --locked
146157
- name: Rustfmt
147158
run: cargo fmt --all -- --check
148-
- name: Rustfmt tests
149-
run: rustfmt --check tests/ui/**/*.rs
159+
- name: Rustfmt compiletests
160+
run: shopt -s globstar && rustfmt --check tests/compiletests/ui/**/*.rs
161+
- name: Rustfmt difftests
162+
run: cargo fmt --check --all --manifest-path tests/difftests/tests/Cargo.toml
150163
- name: Check docs are valid
151164
run: RUSTDOCFLAGS=-Dwarnings cargo doc --no-deps
152165
- name: Check docs for `spirv-std` and `spirv-builder` on stable (for docs.rs)

0 commit comments

Comments
 (0)