diff options
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() |