Add a negative test for bitwise not used in a larger expression.
[piglit/hramrach.git] / tests / bugs / fdo24066.c
blob32e2fc9a1b466286c2c93932ad2bd493f9e35669
1 /*
2 * Copyright (c) 2009 Nicolai Hähnle
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
23 * Authors:
24 * Nicolai Hähnle <nhaehnle@gmail.com>
28 /**
29 * \file
30 * Test for the crash reported in bugs.freedesktop.org bug #24066.
31 * This occured when the native limits of a vertex program are queried
32 * before a fragment program has been setup.
35 #include "piglit-util.h"
36 #include "piglit-framework.h"
38 int piglit_window_mode = GLUT_RGBA;
39 int piglit_width = 16;
40 int piglit_height = 16;
43 enum piglit_result piglit_display(void)
45 return PIGLIT_SUCCESS;
49 static const char program_text[] =
50 "!!ARBvp1.0\n"
51 "MOV result.position, vertex.position;\n"
52 "END";
54 void piglit_init(int argc, char ** argv)
56 GLuint program_object;
57 GLint result;
59 (void) argc;
60 (void) argv;
62 piglit_require_vertex_program();
64 program_object = piglit_compile_program(GL_VERTEX_PROGRAM_ARB, program_text);
66 glBindProgramARB(GL_VERTEX_PROGRAM_ARB, program_object);
68 printf("Testing whether the following call crashes...\n");
69 glGetProgramivARB(GL_VERTEX_PROGRAM_ARB, GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB, &result);
71 piglit_report_result(PIGLIT_SUCCESS);