Results for glslparsertest/glsl2/function-12.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.21799993515
note Returncode was 1
command Z:\piglit\framework/../bin/glslparsertest tests/glslparsertest/glsl2\function-12.vert fail 1.20
errors
  • Successfully compiled vertex shader tests/glslparsertest/glsl2\\function-12.vert: No errors.
info
Returncode: 1

Errors:
Successfully compiled vertex shader tests/glslparsertest/glsl2\function-12.vert: No errors.


Output:
Shader source:
// [config]
// expect_result: fail
// glsl_version: 1.20
// [end config]

/*
 * GLSL 1.20
 * 6.1.1 Function Calling Conventions
 * Recursion is not allowed, not even statically.
 */

#version 120

int A()
{
    return A();
}

void main()
{
    gl_Position = gl_Vertex;
}

Back to summary