On 30 January 2012 20:08, Matt Turner <span dir="ltr">&lt;<a href="mailto:mattst88@gmail.com">mattst88@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Mon, Jan 30, 2012 at 10:28 PM, Paul Berry &lt;<a href="mailto:stereotype441@gmail.com">stereotype441@gmail.com</a>&gt; wrote:<br>
&gt; Commit 99476561 (automake: src/glsl and src/glsl/glcpp) changed the<br>
&gt; build system so that src/glsl/glsl_test is not built by default.  This<br>
&gt; inadvertently broke &quot;make check&quot;, since the tests in<br>
&gt; src/glsl/tests/lower_jumps (which are run by &quot;make check&quot;) rely on<br>
&gt; glsl_test.<br>
&gt;<br>
&gt; This patch ensures that &quot;make check&quot; builds glsl_test before running<br>
&gt; any tests.<br>
&gt; ---<br>
&gt;  Makefile |    1 +<br>
&gt;  1 files changed, 1 insertions(+), 0 deletions(-)<br>
&gt;<br>
&gt; diff --git a/Makefile b/Makefile<br>
&gt; index 1fa369a..e593e7f 100644<br>
&gt; --- a/Makefile<br>
&gt; +++ b/Makefile<br>
&gt; @@ -22,6 +22,7 @@ doxygen:<br>
&gt;        cd doxygen &amp;&amp; $(MAKE)<br>
&gt;<br>
&gt;  check:<br>
&gt; +       cd src/glsl &amp;&amp; $(MAKE) check<br>
<br>
</div>This will run the glcpp test suite as well. If you don&#39;t want to do<br>
that, you can just do<br>
<br>
cd src/glsl &amp;&amp; $(MAKE) glsl_test<br>
<br>
Either way,<br>
Reviewed-by: Matt Turner &lt;<a href="mailto:mattst88@gmail.com">mattst88@gmail.com</a>&gt;<br></blockquote><div><br>Thanks, Matt.  Pushed.<br><br>BTW, I left the patch as &quot;cd src/glsl &amp;&amp; $(MAKE) check&quot;, since I&#39;d prefer to have &quot;make check&quot; run as many tests as possible.<br>
 </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
I&#39;ll fix this up in the next day or so so that src/glsl/Makefile.am<br>
will run these tests directly.<br>
<br>
Thanks for finding this Paul. I knew about glsl_test, but I hadn&#39;t<br>
seen how it was used.<br>
<span class="HOEnZb"><font color="#888888"><br>
Matt<br>
</font></span></blockquote></div><br>