<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
ps: similar question:<BR>
 <BR>
What does "low level" mean?<BR>
 <BR>
hand.c and dtoa.c seem low level to me.<BR>
  I know, they are excused because they are rare and in m3core.<BR>
 <BR>
FilePosixC.c does not.<BR>
  The stuff I did for stat, somewhat.<BR>
 <BR>
The garbage collector does.<BR>
But I can't define it, other than, uselessly "dealing with bits is low level", but <BR>
int is_even(int a) { return !(a & 1); } doesn't seem very "low level", just slightly, and is very "portable".<BR>
 <BR>
I was given a book about "complexity" as a gift.<BR>
It makes a point that "complex" and "simple" are hard to define.<BR>
Many things that seem the one, also seem the other.<BR>
 <BR>
I have to say, I have whittled down unix/*.i3 a bunch, for all the "new" platforms, and I look at what is left, and I am inclined to keep "attacking" it, keep making it "smaller", like the bitflags in Ustat.i3.<BR>
 <BR>
I am inclined to write something like this:<BR>
 <BR>
Ustat.i3:<BR>
 <BR>
TYPE StatFlags = RECORD<BR>
  X, R, W: INTEGER; (* maybe u_short *)<BR>
END;<BR>
 <BR>
PROCEDURE GetStatFlags(VAR StatFlags);<BR>
 <BR>
UstatC.c<BR>
 <BR>
typedef struct { long /* maybe u_short */ X, R, W; } StatFlags_t;<BR>
const static StatFlags_t StatsFlags = { X, R, W };<BR>
void GetStatFlags(StatFlags_t* Result) { *Result = StatFlags };<BR>
 <BR>
Any module using any of the flags, would retrieve them in initialization.<BR>
A bit inefficient.<BR>
Portable.<BR>
Cuts out many repeated lines.<BR>
 <BR>
The C could would need a bit of #ifdefing, to handle platforms that don't have some of the flags, to make them 0.<BR>
 <BR>
Again, very portable.<BR>
Cuts out repetition.<BR>
Is a little slower.<BR>
I know it also might not work, like if there are switch statements or code needing actual constant constants.<BR>
 <BR>
 <BR>
 - Jay<BR><BR><BR>

<HR id=stopSpelling>
<BR>
From: jay.krell@cornell.edu<BR>To: hosking@cs.purdue.edu<BR>CC: m3devel@elegosoft.com<BR>Subject: RE: [M3devel] Fwd: Output from "cron" command<BR>Date: Wed, 17 Dec 2008 22:52:14 +0000<BR><BR>
<STYLE>
.ExternalClass .EC_hmmessage P
{padding:0px;}
.ExternalClass body.EC_hmmessage
{font-size:10pt;font-family:Verdana;}
</STYLE>
1) I totally don't mind the emails. I can ignore them for a day or so easily. :)<BR> <BR> <BR>2) C code in m3core or elsewhere. This is a philisophical question I couldn't decide, interested in discussing some.<BR>Originally I put "FilePosixC.c" in m3core, and called it from libm3. But I think that's..not great.<BR> <BR> <BR>3) "portable"<BR>You throw this word around with emphasis a lot.<BR>Portable Modula-3 code.<BR>The lie of portable C code.<BR>What do you mean?<BR> <BR> <BR>There are many ways to write portable and non-portable Modula-3 and C code.<BR>For example there were Modula-3 regression tests printing the size of an integer.<BR>  Portable to lots of systems, but not all.<BR> <BR>I can write Modula-3 code or C code dependent or independent of sizeof(int) or long or void*.<BR>It's quite easy to do either way, in either language.<BR>I don't think that proves anything.<BR> <BR> <BR>Likewise, in both Modula-3 and C, I can easily directly call Posix open, or Win32 CreateFile.<BR>They are both actually very portable, but less portable than calling libraries that wrap them.<BR>What I mean is, Posix open is implemented on tons of systems, but not all.<BR>Win32 CreateFile is also implemented on tons of systems, but not all.<BR>It depends partly how you quantify systems.<BR>Win32 Create 1) is implemented on over a billion actual machines.<BR>open is actually in msvcrt.dll also, but let's ignore it for this discussion.<BR>I've read that the "Unix workstation" market is only like in the single digit millions, either sold per year or sold ever.<BR>I realize those billion PCs that run Windows, can also run *BSD and Linux, making this all gray.<BR> <BR>Now, another way to quantify this though, that I find "impressive", is that Win32 CreateFile at least historically was implemented on PowerPC, MIPS, Alpha, and currently x86, IA64, AMD64. Not bad.<BR>(Basically, NT has been ported among the most of any /commercial closed source/ OS.)<BR> <BR>But again, I don't think this proves anything.<BR>I can pretty equally easily write portable or non-portable C or Modula, "at the library level".<BR> <BR>One angle you might argue, is that Modula-3 has a "built in" portability layer/library.<BR>It is, in a sense, easier to not call CreateFile or open in Modula-3 than it is in C.<BR>If that is what you mean, ok.<BR> <BR>HOWEVER, if you look at the Modula-3 system, the portability layer, you know, it is forked in terms of Posix and Win32. If you limit yourself to the Posix part of it, well, then, you can use Posix.<BR>I realize Posix systems are not all equal, they are all supersets of Posix, with some overlap in their supersetting.<BR>That's why my checkin worked on some systems but not others.<BR> <BR>Also, with respect to I/O, if use just stdio -- very portable.<BR>Threading -- finally, soon, multi threading will be very portable in C++, at least to the implementations still being maintained.<BR>As well, there is OpenMP.<BR> <BR>Another angle actually you can play here is quality of compiler.<BR>I did some experimentation with a range of compilers I had..I guess I was using C++ at the time.<BR>Some older compilers really stunk. Like, with CFront, you couldn't have more than one return.<BR>Therefore, code like:<BR>  int even(int a)  <BR>  {  <BR>    if (a & 1)  <BR>      return 0;  <BR>    return 1;  <BR>  }<BR> <BR>/could/ be deemed not portable.<BR> <BR>Modula-3 wins here by virtue of there being only one implementation.<BR>Cheating I think.<BR> <BR>See also Python and Perl.<BR>Well, ok, Modula-3 wins here by virtue of having a good small language spec.<BR>You know..Perl is speced as the language implemented by perl.exe....so big and gnarly and impossible to predict..impossible to write down...C++ is fairly well speced, but only through mountains of paper and endless discussion and clarifications....<BR> <BR> <BR> - Jay<BR><BR><BR><BR>

<HR id=EC_stopSpelling>
<BR>
<BR>From: hosking@cs.purdue.edu<BR>To: jay.krell@cornell.edu<BR>Date: Thu, 18 Dec 2008 09:27:36 +1100<BR>CC: m3devel@elegosoft.com<BR>Subject: Re: [M3devel] Fwd: Output from "cron" command<BR><BR><BR><BR>
<DIV><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV style="WORD-WRAP: break-word"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV>No, broken briefly then fixed quickly is OK -- that's what regressions are for.  But on the other hand, testing before checkin is probably nicer to the rest of the world.  That way you don't get whinging e-mails from me complaining that the Tinderbox regressions broke.  I suppose it depends which pain you prefer: my e-mails or testing comprehensively.  ;-)</DIV>
<DIV><BR></DIV>
<DIV>I would hope that these sorts of system-dependent changes are minimized by keeping as much code in *portable* Modula-3 as possible.  To my mind, nothing outside of m3core should need to escape to C.</DIV></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></DIV></SPAN></DIV><BR>
<DIV>
<DIV>On 18 Dec 2008, at 09:24, Jay wrote:</DIV><BR class=EC_EC_Apple-interchange-newline>
<BLOCKQUOTE><SPAN class=EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV class=EC_EC_hmmessage style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">(critical typo -- you can provide a time for it to power back on.)<BR>I'm loathe to leave all my machines on and burn the electricity..<BR>I don't trust them to have good power management, lower power when idle.<BR>I should automate something here though, see if I can run Tinderbox, and see if I can get cron to power on/off.<BR>Every time I have looked at the Tinderbox it seemed too difficult to run.<BR> <BR>On the other hand, I don't know if the status quo is so bad.<BR>You tell me it's broken. I understand that is not ideal, and I should fix it fairly asap, but is it terrible every so often?<BR>I do tend to at least build multiple platforms, even if not "all"..so not every checkin breaks anything/everything.<BR> <BR>I figure LINUXLIBC6 is the most popular, and I can always test that on birch.<BR> <BR> - Jay<BR><BR><BR>
<HR id=EC_EC_stopSpelling>
<BR>From:<SPAN class=EC_EC_Apple-converted-space> </SPAN><A href="mailto:hosking@cs.purdue.edu">hosking@cs.purdue.edu</A><BR>To:<SPAN class=EC_EC_Apple-converted-space> </SPAN><A href="mailto:jay.krell@cornell.edu">jay.krell@cornell.edu</A><BR>Subject: Re: [M3devel] Fwd: Output from "cron" command<BR>Date: Thu, 18 Dec 2008 09:12:52 +1100<BR><BR><BR>
<DIV><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV style="WORD-WRAP: break-word"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV>My machine is in a machine room at Purdue, on all the time.</DIV></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></DIV></SPAN></DIV><BR>
<DIV>
<DIV>On 18 Dec 2008, at 08:37, Jay wrote:</DIV><BR class=EC_EC_EC_Apple-interchange-newline>
<BLOCKQUOTE><SPAN class=EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV class=EC_EC_EC_hmmessage style="FONT-SIZE: 10pt; FONT-FAMILY: Verdana">I keep most of my machines powered off most of the time.<BR> <BR>Do you have automation that both runs a daily Tinderbox, and turns the machine on/off?<BR>My SGI machine at least has a nice feature where you can software power it off, and provide a time that it should power down. I haven't automated, but it seems ideal for daily Tinderboxes.<BR> <BR> - Jay<BR><BR><BR>
<HR id=EC_EC_EC_stopSpelling>
From:<SPAN class=EC_EC_EC_Apple-converted-space> </SPAN><A href="mailto:hosking@cs.purdue.edu">hosking@cs.purdue.edu</A><BR>To:<SPAN class=EC_EC_EC_Apple-converted-space> </SPAN><A href="mailto:jay.krell@cornell.edu">jay.krell@cornell.edu</A><BR>Date: Thu, 18 Dec 2008 07:10:05 +1100<BR>CC:<SPAN class=EC_EC_EC_Apple-converted-space> </SPAN><A href="mailto:m3devel@elegosoft.com">m3devel@elegosoft.com</A><BR>Subject: [M3devel] Fwd: Output from "cron" command<BR><BR><BR>
<DIV><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV style="WORD-WRAP: break-word"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate"><SPAN class=EC_EC_EC_EC_Apple-style-span style="WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate">
<DIV>Jay,</DIV>
<DIV><BR></DIV>
<DIV>I am still getting a compile error on whatever changes you made...</DIV>
<DIV><BR></DIV>
<DIV>-- Tony</DIV></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></SPAN></DIV></SPAN></DIV>
<DIV><BR>
<DIV>Begin forwarded message:</DIV><BR class=EC_EC_EC_EC_Apple-interchange-newline>
<BLOCKQUOTE>
<DIV>
<DIV style="MARGIN-BOTTOM: 0px; MARGIN-LEFT: 0px; MARGIN-RIGHT: 0px"><FONT style="FONT: 12px Helvetica; COLOR: rgb(0,0,0)" face=Helvetica color=#000000 size=3><B>From:<SPAN class=EC_EC_EC_Apple-converted-space> </SPAN></B></FONT><FONT style="FONT: 12px Helvetica" face=Helvetica size=3>Tony Hosking <<A href="mailto:hosking@cs.purdue.edu">hosking@cs.purdue.edu</A>></FONT></DIV>
<DIV style="MARGIN-BOTTOM: 0px; MARGIN-LEFT: 0px; MARGIN-RIGHT: 0px"><FONT style="FONT: 12px Helvetica; COLOR: rgb(0,0,0)" face=Helvetica color=#000000 size=3><B>Date:<SPAN class=EC_EC_EC_Apple-converted-space> </SPAN></B></FONT><FONT style="FONT: 12px Helvetica" face=Helvetica size=3>18 December 2008 00:04:32 GMT+11:00</FONT></DIV>
<DIV style="MARGIN-BOTTOM: 0px; MARGIN-LEFT: 0px; MARGIN-RIGHT: 0px"><FONT style="FONT: 12px Helvetica; COLOR: rgb(0,0,0)" face=Helvetica color=#000000 size=3><B>To:<SPAN class=EC_EC_EC_Apple-converted-space> </SPAN></B></FONT><FONT style="FONT: 12px Helvetica" face=Helvetica size=3><A href="mailto:hosking@cs.purdue.edu">hosking@cs.purdue.edu</A></FONT></DIV>
<DIV style="MARGIN-BOTTOM: 0px; MARGIN-LEFT: 0px; MARGIN-RIGHT: 0px"><FONT style="FONT: 12px Helvetica; COLOR: rgb(0,0,0)" face=Helvetica color=#000000 size=3><B>Subject:<SPAN class=EC_EC_EC_Apple-converted-space> </SPAN></B></FONT><FONT style="FONT: 12px Helvetica" face=Helvetica size=3><B>Output from "cron" command</B></FONT></DIV>
<DIV style="MIN-HEIGHT: 14px; MARGIN-BOTTOM: 0px; MARGIN-LEFT: 0px; MARGIN-RIGHT: 0px"><BR></DIV></DIV>
<DIV>Your "cron" job on niagara.cs.purdue.edu<BR>$HOME/cm3/scripts/regression/cron.sh<BR><BR>produced the following output:<BR><BR>TESTHOSTNAME=niagara<BR>WS=/homes/hosking/work/cm3-ws/niagara-2008-12-17-11-30-04<BR>LASTREL=5.4.0<BR>INSTROOT_REL=/homes/hosking/work/cm3-inst/niagara/rel-5.4.0<BR>INSTROOT_POK=/homes/hosking/work/cm3-inst/niagara/prev-ok<BR>INSTROOT_LOK=/homes/hosking/work/cm3-inst/niagara/last-ok<BR>INSTROOT_CUR=/homes/hosking/work/cm3-inst/niagara/current<BR>CM3_OSTYPE=POSIX<BR>CM3_TARGET=SOLgnu<BR>BINDISTMIN=/homes/hosking/work/cm3-min-POSIX-SOLgnu-5.4.0.tgz<BR>CM3CVSSERVER=birch.elegosoft.com<BR>CM3CVSROOT=birch.elegosoft.com:/usr/cvs<BR>BINDISTMIN_NAME=cm3-min-POSIX-SOLgnu-5.4.0.tgz<BR>BINDISTMIN=/homes/hosking/work/cm3-min-POSIX-SOLgnu-5.4.0.tgz<BR>testing ssh birch.elegosoft.com..<BR>ssh birch.elegosoft.com ok<BR>Building cm3.<BR>Tinderbox Tree:   "cm3"<BR>Buildname:        "SOLgnu SunOS 5.10 niagara release-build"<BR><BR>creating log file /tmp/build-cm3-20081217-063006-fOaGeh/log.txt<BR><BR>---<BR><BR>checkout, compile and test of cm3 ...<BR>2008.12.17 06:30:07 -- checkout in progress.<BR>[start checkout 2008.12.17 06:30:11]<BR>cd /tmp/build-cm3-20081217-063006-fOaGeh/build<BR>cvs return value: 0<BR>[end checkout 2008.12.17 06:49:43]<BR>CHECKOUT_RETURN = 0<BR>--<BR>2008.12.17 06:49:45 -- compile in progress.<BR>[start compile 2008.12.17 06:49:45]<BR>compile return value: 0<BR>[end compile 2008.12.17 06:55:03]<BR>COMPILE_RETURN = 1<BR>*** COMPILE FAILED<BR>removing build tree /tmp/build-cm3-20081217-063006-fOaGeh ...<BR>cleaning CM3 workspaces...<BR>/homes/hosking/work/cm3-ws/niagara-*<BR><BR>cleaning regression test log files...<BR>/homes/hosking/tmp/cm3/niagara/cm3-rlog-*<BR><BR>cleaning m3test log files...<BR>/homes/hosking/tmp/cm3/niagara/m3tests-*.stdout<BR><BR>/homes/hosking/tmp/cm3/niagara/m3tests-*.stderr<BR><BR>/homes/hosking/tmp/cm3/niagara/m3tests-*.stderr.extract<BR><BR>cleaning snapshot files...<BR>/homes/hosking/tmp/cm3/niagara/cm3-min-POSIX-SOLgnu-*-*.tgz<BR><BR>cleaning package reports...<BR>/tmp/cm3-pkg-report-SOLgnu-*.html<BR><BR>TESTHOSTNAME=niagara<BR>WS=/homes/hosking/work/cm3-ws/niagara-2008-12-17-11-57-02<BR>LASTREL=5.4.0<BR>INSTROOT_REL=/homes/hosking/work/cm3-inst/niagara/rel-5.4.0<BR>INSTROOT_POK=/homes/hosking/work/cm3-inst/niagara/prev-ok<BR>INSTROOT_LOK=/homes/hosking/work/cm3-inst/niagara/last-ok<BR>INSTROOT_CUR=/homes/hosking/work/cm3-inst/niagara/current<BR>CM3_OSTYPE=POSIX<BR>CM3_TARGET=SOLgnu<BR>BINDISTMIN=/homes/hosking/work/cm3-min-POSIX-SOLgnu-5.4.0.tgz<BR>CM3CVSSERVER=birch.elegosoft.com<BR>CM3CVSROOT=birch.elegosoft.com:/usr/cvs<BR>BINDISTMIN_NAME=cm3-min-POSIX-SOLgnu-5.4.0.tgz<BR>BINDISTMIN=/homes/hosking/work/cm3-min-POSIX-SOLgnu-5.4.0.tgz<BR>testing ssh birch.elegosoft.com..<BR>ssh birch.elegosoft.com ok<BR>Building cm3.<BR>Tinderbox Tree:   "cm3"<BR>Buildname:        "SOLgnu SunOS 5.10 niagara lastok-build"<BR><BR>creating log file /tmp/build-cm3-20081217-065704-RGaGCn/log.txt<BR><BR>---<BR><BR>checkout, compile and test of cm3 ...<BR>2008.12.17 06:57:04 -- checkout in progress.<BR>[start checkout 2008.12.17 06:57:06]<BR>cd /tmp/build-cm3-20081217-065704-RGaGCn/build<BR>cvs return value: 0<BR>[end checkout 2008.12.17 07:16:18]<BR>CHECKOUT_RETURN = 0<BR>--<BR>2008.12.17 07:16:21 -- compile in progress.<BR>[start compile 2008.12.17 07:16:21]<BR>compile return value: 0<BR>[end compile 2008.12.17 08:01:31]<BR>COMPILE_RETURN = 0<BR>2008.12.17 08:01:38 -- tests in progress.<BR>[start run-tests 2008.12.17 08:01:38]<BR>cd /tmp/build-cm3-20081217-065704-RGaGCn/build<BR>[end run-tests 2008.12.17 08:01:38]<BR>TESTS_RETURN = 0<BR>2008.12.17 08:01:38 -- checkout, compile and test run done.<BR><BR>---<BR><BR>removing build tree /tmp/build-cm3-20081217-065704-RGaGCn ...<BR>cleaning CM3 workspaces...<BR>/homes/hosking/work/cm3-ws/niagara-*<BR><BR>cleaning regression test log files...<BR>/homes/hosking/tmp/cm3/niagara/cm3-rlog-*<BR><BR>cleaning m3test log files...<BR>/homes/hosking/tmp/cm3/niagara/m3tests-*.stdout<BR><BR>/homes/hosking/tmp/cm3/niagara/m3tests-*.stderr<BR><BR>/homes/hosking/tmp/cm3/niagara/m3tests-*.stderr.extract<BR><BR>cleaning snapshot files...<BR>/homes/hosking/tmp/cm3/niagara/cm3-min-POSIX-SOLgnu-*-*.tgz<BR><BR>cleaning package reports...<BR>/tmp/cm3-pkg-report-SOLgnu-*.html<BR><BR>done.<BR></DIV></BLOCKQUOTE></DIV><BR></DIV></SPAN><BR class=EC_EC_EC_Apple-interchange-newline></BLOCKQUOTE></DIV><BR></DIV></SPAN><BR class=EC_EC_Apple-interchange-newline></BLOCKQUOTE></DIV><BR></body>
</html>