diff options
author | Eric Anholt <eric@anholt.net> | 2010-04-02 01:59:50 -1000 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-04-02 11:22:41 -0700 |
commit | 106d122318b94188b0e00115cd5242e0e679f807 (patch) | |
tree | bd07acedbac75f1cea4097c65c397ed8849125ca /tests | |
parent | 3f151509327629ce7d7cbfec42cae987ebf6639f (diff) |
Add PASS / FAIL annotations to tests missing them.
This tricked my import of the tests into piglit.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/constructor-01.glsl | 2 | ||||
-rw-r--r-- | tests/parameters-01.glsl | 2 | ||||
-rw-r--r-- | tests/parameters-02.glsl | 2 | ||||
-rw-r--r-- | tests/swiz-01.glsl | 1 | ||||
-rw-r--r-- | tests/swiz-02.glsl | 1 |
5 files changed, 8 insertions, 0 deletions
diff --git a/tests/constructor-01.glsl b/tests/constructor-01.glsl index f7af569c68..fdfaf89866 100644 --- a/tests/constructor-01.glsl +++ b/tests/constructor-01.glsl @@ -1,3 +1,5 @@ +/* PASS */ + void main() { gl_Position = vec4(1.0, 1.0, 1.0, 0.0);; diff --git a/tests/parameters-01.glsl b/tests/parameters-01.glsl index f0beb6c35d..b485106e9d 100644 --- a/tests/parameters-01.glsl +++ b/tests/parameters-01.glsl @@ -1,3 +1,5 @@ +/* FAIL: redefinition of a() */ + void a() { ; diff --git a/tests/parameters-02.glsl b/tests/parameters-02.glsl index 58f44e532e..7ff5f59ab7 100644 --- a/tests/parameters-02.glsl +++ b/tests/parameters-02.glsl @@ -1,3 +1,5 @@ +/* PASS */ + void a() { ; diff --git a/tests/swiz-01.glsl b/tests/swiz-01.glsl index a72af37c67..3268fa178c 100644 --- a/tests/swiz-01.glsl +++ b/tests/swiz-01.glsl @@ -1,3 +1,4 @@ +/* PASS */ #version 120 void main() diff --git a/tests/swiz-02.glsl b/tests/swiz-02.glsl index 5e2acd1a25..e3f043c47b 100644 --- a/tests/swiz-02.glsl +++ b/tests/swiz-02.glsl @@ -1,3 +1,4 @@ +/* FAIL: assignment of a vec2 to a float */ #version 120 void main() |