From 106d122318b94188b0e00115cd5242e0e679f807 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 2 Apr 2010 01:59:50 -1000 Subject: [PATCH] Add PASS / FAIL annotations to tests missing them. This tricked my import of the tests into piglit. --- tests/constructor-01.glsl | 2 ++ tests/parameters-01.glsl | 2 ++ tests/parameters-02.glsl | 2 ++ tests/swiz-01.glsl | 1 + tests/swiz-02.glsl | 1 + 5 files changed, 8 insertions(+) diff --git a/tests/constructor-01.glsl b/tests/constructor-01.glsl index f7af569c683..fdfaf898663 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 f0beb6c35d1..b485106e9d7 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 58f44e532e1..7ff5f59ab79 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 a72af37c677..3268fa178c1 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 5e2acd1a25a..e3f043c47bd 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() -- 2.30.2