diff options
author | Sven Gothel <[email protected]> | 2010-11-22 12:54:21 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-22 12:54:21 +0100 |
commit | 64a0535f84a8bf8f29cec1dc468356bacac67023 (patch) | |
tree | f4433b92e18a0ab0237677fd5f8f772acbe12160 /src/junit | |
parent | 1481f8164304c47a5a9772b690cc21c514fedc35 (diff) |
TestTransformFeedbackVaryingsBug407NEWT: Fix class name and clarify output
Diffstat (limited to 'src/junit')
-rw-r--r-- | src/junit/com/jogamp/test/junit/jogl/glsl/TestTransformFeedbackVaryingsBug407NEWT.java (renamed from src/junit/com/jogamp/test/junit/jogl/glsl/TestTransformFeedbackVeryingsBug407NEWT.java) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/junit/com/jogamp/test/junit/jogl/glsl/TestTransformFeedbackVeryingsBug407NEWT.java b/src/junit/com/jogamp/test/junit/jogl/glsl/TestTransformFeedbackVaryingsBug407NEWT.java index 0d9a595aa..cf625dba9 100644 --- a/src/junit/com/jogamp/test/junit/jogl/glsl/TestTransformFeedbackVeryingsBug407NEWT.java +++ b/src/junit/com/jogamp/test/junit/jogl/glsl/TestTransformFeedbackVaryingsBug407NEWT.java @@ -31,7 +31,7 @@ import java.io.IOException; * Bug 'Function glTransformFeedbackVaryings incorrectly passes argument' * http://jogamp.org/bugzilla/show_bug.cgi?id=407 */ -public class TestTransformFeedbackVeryingsBug407NEWT extends UITestCase { +public class TestTransformFeedbackVaryingsBug407NEWT extends UITestCase { private GLContext context; private String VERTEX_SHADER_TEXT; @@ -143,7 +143,7 @@ public class TestTransformFeedbackVeryingsBug407NEWT extends UITestCase { // then if(!ShaderUtil.isProgramValid(gl, shaderProgram, pbaos)) { - System.out.println("testGlTransformFeedbackVaryings_WhenVarNameOK:postLink: "+baos.toString()); + System.out.println("Error (unexpected link error) - testGlTransformFeedbackVaryings_WhenVarNameOK:postLink: "+baos.toString()); Assert.assertTrue(false); } pbaos.flush(); baos.reset(); @@ -173,7 +173,7 @@ public class TestTransformFeedbackVeryingsBug407NEWT extends UITestCase { // then if(!ShaderUtil.isProgramValid(gl, shaderProgram, pbaos)) { - System.out.println("testGlTransformFeedbackVaryings_WhenVarNameWrong:postLink: "+baos.toString()); + System.out.println("GOOD (expected link error) - testGlTransformFeedbackVaryings_WhenVarNameWrong:postLink: "+baos.toString()); // should be invalid, due to wrong var name } else { Assert.assertTrue(false); @@ -185,7 +185,7 @@ public class TestTransformFeedbackVeryingsBug407NEWT extends UITestCase { } public static void main(String args[]) throws IOException { - String tstname = TestTransformFeedbackVeryingsBug407NEWT.class.getName(); + String tstname = TestTransformFeedbackVaryingsBug407NEWT.class.getName(); org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(new String[] { tstname, "filtertrace=true", |