<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: times new roman,new york,times,serif; font-size: 12pt; color: #000000'>Hi Jane,<br>I had to change configure.ac too, and some other Makefile.am. I did not get a message for committing, but you can check online what I did.<br><br>http://trac.mcs.anl.gov/projects/ITAPS/changeset/5769<br>http://trac.mcs.anl.gov/projects/ITAPS/changeset/5770<br><br>Thanks,<br>Iulian<br><br><hr id="zwchr"><blockquote style="border-left:2px solid rgb(16, 16, 255);margin-left:5px;padding-left:5px;">Thanks, Iulian. I see that you updated test/Makefile.am to add $(CGM_EXT_LIBS). Seems it solved the problems!<br><br>Have a nice day!<br><br>Jane<br><br><div class="gmail_quote">On Mon, Oct 8, 2012 at 7:16 AM, Iulian Grindeanu <span dir="ltr"><<a href="mailto:iulian@mcs.anl.gov" target="_blank">iulian@mcs.anl.gov</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div style="font-size:12pt;font-family:times new roman,new york,times,serif">I forgot to commit a file, <a href="http://TestConfig.h.in" target="_blank">TestConfig.h.in</a> in the new place, so it didn't work :(<br>
It should work tonight<br>Iulian<br><br><hr><div><div class="h5"><blockquote style="border-left:2px solid rgb(16,16,255);margin-left:5px;padding-left:5px"><div style="font-size:12pt;font-family:times new roman,new york,times,serif">
Hi Jane,<br>I think I fixed it, you should double-check on Monday. I restarted the buildbot, so we will know if I fixed it or not :)<br><br>Best Regards,<br>Iulian<br><br><br><hr><blockquote style="border-left:2px solid rgb(16,16,255);margin-left:5px;padding-left:5px">
<div>I don't get it, I am planning to remove the whole geom/testing, and move its contents to cgm/test. I am not using cmake either, but thought I should keep the *txt file for later reference. Maybe I should change Makefile.am in the parent directory to not look to build test in geom/testing. I'll look into it Monday.</div>

<div> </div><div>Jane<br><br></div><div class="gmail_quote">On Sat, Oct 6, 2012 at 7:59 AM, Iulian Grindeanu <span dir="ltr"><<a href="mailto:iulian@mcs.anl.gov" target="_blank">iulian@mcs.anl.gov</a>></span> wrote:<br>

<blockquote class="gmail_quote"><div><div style="font-family:times new roman,new york,times,serif;font-size:12pt">
Hi Jane,<br>The buildbot failed last night, because of these and above changes. (autoreconf -fi failed, I tried on a new working folder)<br>Buildbot uses autotools, not cmake. So it needs Makefile.am and <a href="http://TestConfig.h.in" target="_blank">TestConfig.h.in</a>, in geom/testing, to generate Makefile and TestConfig.h. <br>

I will disable the buildbot for the weekend, unless you can fix it.<br><br>Thanks,<br>Iulian<br><hr><b>From: </b><a href="mailto:janehu@mcs.anl.gov" target="_blank">janehu@mcs.anl.gov</a><br><b>To: </b><a href="mailto:cgma-dev@mcs.anl.gov" target="_blank">cgma-dev@mcs.anl.gov</a><br>

<b>Sent: </b>Friday, October 5, 2012 10:58:11 AM<br><b>Subject: </b>[cgma-dev] r5768 - cgm/trunk/test<div><div><br><br>Author: janehu<br>Date: 2012-10-05 10:58:11 -0500 (Fri, 05 Oct 2012)<br>New Revision: 5768<br>
<br>Added:<br>   cgm/trunk/test/AngleCalc.cpp<br>   cgm/trunk/test/CreateGeometry.cpp<br>   cgm/trunk/test/GraphicsData.cpp<br>   cgm/trunk/test/TestUtilities.cpp<br>   cgm/trunk/test/TestUtilities.hpp<br>Modified:<br>   cgm/trunk/test/Makefile.am<br>

Log:<br>Moves geom/testing checks to here,they are basically similiar check-ups for geometry. Corresponding CMakeLists.txt file is not moved here. Self study to see if I there's a way to auto-generate CMakeLists.txt from Makefile.am, passed make check in this directory.<br>

<br>Added: cgm/trunk/test/AngleCalc.cpp<br>===================================================================<br>--- cgm/trunk/test/AngleCalc.cpp                                (rev 0)<br>+++ cgm/trunk/test/AngleCalc.cpp        2012-10-05 15:58:11 UTC (rev 5768)<br>

@@ -0,0 +1,121 @@<br>+/**<br>+ * \file AngleCalc.cpp<br>+ *<br>+ * \brief AngleCalc, another simple C++ driver for CGM<br>+ *<br>+ * This program acts as a simple driver for CGM.  It reads in a geometry,<br>+ * and performs varies checks for bodies, surfaces, curves and vertices.<br>

+ */<br>+<br>+#undef NDEBUG<br>+#include <cassert><br>+<br>+#include "stdio.h"<br>+<br>+#include "GeometryQueryTool.hpp"<br>+#include "GeometryModifyTool.hpp"<br>+#include "RefEdge.hpp"<br>

+#include "RefVertex.hpp"<br>+#include "CoEdge.hpp"<br>+#include "RefFace.hpp"<br>+#include "CubitDefines.h"<br>+#include "CubitBox.hpp"<br>+#include "InitCGMA.hpp"<br>

+#include "TestUtilities.hpp"<br>+<br>+#ifndef SRCDIR<br>+# define SRCDIR .<br>+#endif<br>+<br>+#ifdef TEST_ACIS<br>+#  define ENGINE "ACIS"<br>+#elif defined (TEST_OCC)<br>+#  define ENGINE "OCC"<br>

+#else<br>+#  error "Which engine to test?"<br>+#endif<br>+<br>+#define STRINGIFY_(X) #X<br>+#define STRINGIFY(X) STRINGIFY_(X)<br>+#define SRCPATH STRINGIFY(SRCDIR) "/"<br>+<br>+// forward declare some functions used and defined later<br>

+int AngleCalc();<br>+<br>+// macro for printing a separator line<br>+#define PRINT_SEPARATOR   PRINT_INFO("=======================================\n");<br></div></div></div></div></blockquote></div><br>
</blockquote><br></div></blockquote><br></div></div></div></div></blockquote></div><br>
</blockquote><br></div></body></html>