Results for glslparsertest/glsl2/function-12.vert

Overview

Status: fail
Result: fail

Back to summary

Details

Detail Value
returncode 1
time 0.112004041672
note
Returncode was 1
command
/Users/mks/Downloads/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 compiler output)
info
Returncode: 1

Errors:
Successfully compiled vertex shader tests/glslparsertest/glsl2/function-12.vert: (no compiler output)


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