Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 09:28:09 -0700 (Fri, 01 Jun 2007)
Revision: 10854
Log message:
Updating the download page for 0.9.8.3 release.
Changes | Path |
Replaced | omake-branches/0.9.8.x/doc/html/download.html |
Copied | omake-branches/0.9.8.x/doc/html/download.html (from rev 10853, omake-branches/0.9.8.3/doc/html/download.html) |
+1 -1 | omake-branches/0.9.8.x/src/Makefile |
+1 -1 | omake-branches/0.9.8.x/src/Makefile.nt |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 09:38:31 -0700 (Fri, 01 Jun 2007)
Revision: 10855
Log message:
Rephrased a little.
Changes | Path |
+3 -2 | omake-branches/0.9.8.x/doc/html/changelog.html |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 11:55:44 -0700 (Fri, 01 Jun 2007)
Revision: 10857
Log message:
Minor optimization.
Changes | Path |
+6 -2 | omake-branches/0.9.8.x/src/util/omake_wild.ml |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-01 12:49:25 -0700 (Fri, 01 Jun 2007)
Revision: 10858
Log message:
Merge to rev 10853.
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 15:25:34 -0700 (Fri, 01 Jun 2007)
Revision: 10859
Log message:
Do the correct translation to absolute name (for things like the history file
name) when a relative directory is given via the --dotomake flag.
Changes | Path |
+2 -5 | omake-branches/0.9.8.x/src/builtin/omake_builtin_shell.ml |
+12 -2 | omake-branches/0.9.8.x/src/ir/omake_state.ml |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 15:50:38 -0700 (Fri, 01 Jun 2007)
Revision: 10861
Log message:
Our current algorithm for the "generic" case-sensitivity test was:
1. Try the name being created itself.
2. Try looking at the directory entries.
3. Create a dummy file, and test.
4. Test the parent.
Step 2 would start with the Unix.opendir call and if that failed we would
abvance to step 3.
This commit changes it so that if the Unix.opendir error code tells us the
directory does not exist (either of: ENOENT, ENOTDIR, ELOOP, or ENAMETOOLONG),
then we advance to step 4 right away.
Note that in the case of a permission error in Unix.opendir, we still go to
step 3 (as a directory with "wx" permission, but no "r" would allow step 3,
but not opendir).
Changes | Path |
+19 -11 | omake-branches/0.9.8.x/src/ir/omake_node.ml |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 15:56:01 -0700 (Fri, 01 Jun 2007)
Revision: 10862
Log message:
- Merged the 10854:10861 from the 0.9.8.x branch (this includes the changes
aimed at reducing the cases where OMake tried to create a
case-sensitivity-testing temp file in a "weird" place).
- Bumped the version number to 0.9.8.3-2
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 16:11:53 -0700 (Fri, 01 Jun 2007)
Revision: 10863
Log message:
$(OCAMLDEPFLAGS) should be passed to "ocamldep -modules"
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-01 16:14:41 -0700 (Fri, 01 Jun 2007)
Revision: 10864
Log message:
$(OCAMLDEPFLAGS) should be passed to "ocamldep -modules" (merges r10863 off
0.9.8.3)
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 09:56:21 -0700 (Mon, 04 Jun 2007)
Revision: 10870
Log message:
There was a Unix.closedir missing along one of the control paths.
Changes | Path |
+4 -1 | omake-branches/0.9.8.x/src/ir/omake_node.ml |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 09:56:48 -0700 (Mon, 04 Jun 2007)
Revision: 10871
Log message:
There was a Unix.closedir missing along one of the control paths.
(This is the same as rev. 10870 on 0.9.8.x)
Changes | Path |
+4 -1 | omake-branches/0.9.8.3/src/ir/omake_node.ml |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 10:02:52 -0700 (Mon, 04 Jun 2007)
Revision: 10872
Log message:
Updated the version to
"0.9.8.3+ (working towards 0.9.8.3-3, or 0.9.8.4, or moving to a newer branch)"
Changes | Path |
+2 -2 | omake-branches/0.9.8.3/omake.spec |
+1 -1 | omake-branches/0.9.8.3/version.txt |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 12:46:05 -0700 (Mon, 04 Jun 2007)
Revision: 10877
Log message:
- In Omake_cache.exists, only do the Unix stat, but do not attempt to compute the digest.
- In Omake_cache.{stat_unix,is_dir,exists,exists_dir}, allow passing an
optional "force" flag that would cause the cache to re-stat a file that it
thinks does not exist.
- When looking up a doing a "node" -> "executable" lookup on Windows (which
cycles through potential suffixes), do a "forced" existence check for the
node itself (but not the suffix-appended versions). Without this, some of my
code was failing on Windows...
Changes | Path |
+51 -33 | omake-branches/0.9.8.3/src/ir/omake_cache.ml |
+6 -4 | omake-branches/0.9.8.3/src/ir/omake_cache.mli |
+1 -1 | omake-branches/0.9.8.3/src/shell/omake_shell_job.ml |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-04 13:04:17 -0700 (Mon, 04 Jun 2007)
Revision: 10878
Log message:
Rearrange the LaTeX .STATIC code a bit.
Static sections are actually created as objects first, then folded into the global
environment. This means that lazy expressions in a .STATIC block escape the object
in which they were defined, so code like this will fail:
TETEX2_ENABLED = ...
LATEXFLAGS =
BASE = ...
value $`(if $(TETEX2_ENABLED), ...)
It is unclear to me whether this is an issue.
Changes | Path |
+1 -0 | omake-branches/0.9.8.x/doc/OMakefile |
+7 -4 | omake-branches/0.9.8.x/lib/build/LaTeX.om |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 13:24:03 -0700 (Mon, 04 Jun 2007)
Revision: 10879
Log message:
- In Omake_cache.exists, only do the Unix stat, but do not attempt to compute
the digest.
- In Omake_cache.{stat_unix,is_dir,exists,exists_dir}, allow passing an
optional "force" flag that would cause the cache to re-stat a file that it
thinks does not exist.
- When looking up a doing a "node" -> "executable" lookup on Windows (which
cycles through potential suffixes), do a "forced" existence check for the
node itself (but not the suffix-appended versions). Without this, some of my
code was failing on Windows...
This merges rev 10877 off the "old" 0.9.8.3 branch.
Changes | Path |
+51 -33 | omake-branches/0.9.8.x/src/ir/omake_cache.ml |
+6 -4 | omake-branches/0.9.8.x/src/ir/omake_cache.mli |
+1 -1 | omake-branches/0.9.8.x/src/shell/omake_shell_job.ml |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-04 14:13:58 -0700 (Mon, 04 Jun 2007)
Revision: 10880
Log message:
Merge to rev 10878.
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 15:46:47 -0700 (Mon, 04 Jun 2007)
Revision: 10883
Log message:
Preparing for 0.9.8.4
Changes | Path |
Deleted | omake-branches/0.9.8.3/ |
Copied | omake-branches/0.9.8.4/ (from rev 10882, omake-branches/0.9.8.3) |
+2 -2 | omake-branches/0.9.8.4/omake.spec |
+1 -1 | omake-branches/0.9.8.4/version.txt |
+1 -1 | omake-branches/0.9.8.x/omake.spec |
+1 -1 | omake-branches/0.9.8.x/version.txt |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 15:46:47 -0700 (Mon, 04 Jun 2007)
Revision: 10883
Log message:
Preparing for 0.9.8.4
Changes | Path |
Deleted | omake-branches/0.9.8.3/ |
Copied | omake-branches/0.9.8.4/ (from rev 10882, omake-branches/0.9.8.3) |
+2 -2 | omake-branches/0.9.8.4/omake.spec |
+1 -1 | omake-branches/0.9.8.4/version.txt |
+1 -1 | omake-branches/0.9.8.x/omake.spec |
+1 -1 | omake-branches/0.9.8.x/version.txt |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 15:52:23 -0700 (Mon, 04 Jun 2007)
Revision: 10884
Log message:
0.9.8.4
Changes | Path |
+2 -2 | omake-branches/0.9.8.4/omake.aip |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 15:57:51 -0700 (Mon, 04 Jun 2007)
Revision: 10885
Log message:
Preparing the 0.9.8.4-1 release
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 15:59:03 -0700 (Mon, 04 Jun 2007)
Revision: 10886
Log message:
Use the correct branch.
Changes | Path |
+1 -1 | omake-branches/0.9.8.4/make_checkout |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-04 16:01:45 -0700 (Mon, 04 Jun 2007)
Revision: 10887
Log message:
Posting the 0.9.8.4-1 release on the web.
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-04 18:47:59 -0700 (Mon, 04 Jun 2007)
Revision: 10890
Log message:
Updated some of the documentation
- private/this/public qualifiers
- export
Changes | Path |
+0 -1 | omake-branches/0.9.8.x/doc/OMakefile |
Binary | omake-branches/0.9.8.x/doc/ps/omake-doc.dvi |
Binary | omake-branches/0.9.8.x/doc/ps/omake-doc.pdf |
Binary | omake-branches/0.9.8.x/doc/ps/omake-doc.ps |
+45 -5 | omake-branches/0.9.8.x/doc/src/omake-detail.tex |
+1 -0 | omake-branches/0.9.8.x/doc/src/omake-doc.tex |
+3 -0 | omake-branches/0.9.8.x/doc/src/omake-index.tex |
Copied | omake-branches/0.9.8.x/doc/src/omake-language-naming.tex (from rev 10877, omake-branches/0.9.8.x/doc/src/omake-language.tex) |
+77 -549 | omake-branches/0.9.8.x/doc/src/omake-language-naming.tex (from rev 10877, omake-branches/0.9.8.x/doc/src/omake-language.tex) |
+2 -199 | omake-branches/0.9.8.x/doc/src/omake-language.tex |
+2183 -1947 | omake-branches/0.9.8.x/doc/txt/omake-doc.txt |
Changes by: Nathaniel Gray (n8gray at cs.caltech.edu)
Date: 2007-06-05 11:53:53 -0700 (Tue, 05 Jun 2007)
Revision: 10892
Log message:
Automatically append the architecture to the pkg/dmg filenames.
Changes | Path |
+7 -1 | omake-branches/0.9.8.x/make_dmg |
Changes by: Nathaniel Gray (n8gray at cs.caltech.edu)
Date: 2007-06-05 11:57:18 -0700 (Tue, 05 Jun 2007)
Revision: 10893
Log message:
Added an upload target. Now the whole thing's truly brainless:
make_dmg all && make_dmg upload
Changes | Path |
+6 -2 | omake-branches/0.9.8.x/make_dmg |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-06 14:55:50 -0700 (Wed, 06 Jun 2007)
Revision: 10902
Log message:
Restore the current directory after executing a .SUBDIRS,
addressing bug #670.
That is, the following does not export the current directory.
.SUBDIRS: a
export
But the following does.
section
cd a
export
Changes | Path |
+2 -0 | omake-branches/0.9.8.x/src/build/omake_rule.ml |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-07 15:43:35 -0700 (Thu, 07 Jun 2007)
Revision: 10909
Log message:
Added dcoumentation for .STATIC
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-07 15:51:25 -0700 (Thu, 07 Jun 2007)
Revision: 10910
Log message:
Add some macros for version numbers.
Changes | Path |
+3 -2 | omake-branches/0.9.8.x/doc/html/omake-doc.html |
+2 -2 | omake-branches/0.9.8.x/doc/src/omake-detail.tex |
+5 -0 | omake-branches/0.9.8.x/doc/src/omake-doc.tex |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-08 14:01:32 -0700 (Fri, 08 Jun 2007)
Revision: 10913
Log message:
Mark .STATIC as \newinreorg, which now says "will be introduced".
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-10 16:49:20 -0700 (Sun, 10 Jun 2007)
Revision: 10925
Log message:
Merged Nathan's "make_dmg upload" implementation (rev 10893 off the 0.9.8.x
branch).
Changes | Path |
+6 -2 | omake-branches/0.9.8.4/make_dmg |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-10 16:52:53 -0700 (Sun, 10 Jun 2007)
Revision: 10926
Log message:
Bumping the version number (to 0.9.8.4.0+)
Changes | Path |
+2 -2 | omake-branches/0.9.8.4/omake.spec |
+1 -1 | omake-branches/0.9.8.4/version.txt |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-10 18:33:29 -0700 (Sun, 10 Jun 2007)
Revision: 10927
Log message:
FS case sensitivity improvements:
- If the name does not ocontain any upper case characters, abortt the case
sensitivity early (as we do not really care).
- Test with Unix.access before trying to create test entries.
- Test for all the 3 pairs of ranges that Char.uppercase/Char.lowercase
recognizes (not just a single 'A'..'Z'/'a'..'z').
Changes | Path |
+36 -9 | omake-branches/0.9.8.4/src/ir/omake_node.ml |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-10 18:37:30 -0700 (Sun, 10 Jun 2007)
Revision: 10928
Log message:
FS case sensitivity improvements:
- If the name does not ocontain any upper case characters, abortt the case
sensitivity early (as we do not really care).
- Test with Unix.access before trying to create test entries.
- Test for all the 3 pairs of ranges that Char.uppercase/Char.lowercase
recognizes (not just a single 'A'..'Z'/'a'..'z').
(This merges rev. 10927 off the 0.9.8.4 branch).
Changes | Path |
+36 -9 | omake-branches/0.9.8.x/src/ir/omake_node.ml |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-10 18:44:24 -0700 (Sun, 10 Jun 2007)
Revision: 10929
Log message:
Will package the current state as 0.9.8.4-2 for the Gentoo people to try.
Changes | Path |
+2 -2 | omake-branches/0.9.8.4/omake.spec |
+1 -1 | omake-branches/0.9.8.4/version.txt |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-11 14:10:16 -0700 (Mon, 11 Jun 2007)
Revision: 10930
Log message:
Even if OCAMLDEP_MODULES_ENABLED is set, ocamldep needs to be passed
the OCAMLDEPFLAGS, because they might indicate how to preprocess the
file (thanks David Noblet for catching this).
Do we also need to use ocamlfind? I'm not sure...
Changes | Path |
+2 -1 | omake-branches/0.9.8.4/lib/build/OCaml.om |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-12 14:38:27 -0700 (Tue, 12 Jun 2007)
Revision: 10937
Log message:
Even if OCAMLDEP_MODULES_ENABLED is set, ocamldep needs to be passed
the OCAMLDEPFLAGS, because they might indicate how to preprocess the
file (thanks David Noblet for catching this).
(Merges rev 10930 from he 0.9.8.4 branch)
Changes | Path |
+2 -1 | omake-branches/0.9.8.x/lib/build/OCaml.om |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-13 11:05:00 -0700 (Wed, 13 Jun 2007)
Revision: 10947
Log message:
Minor: Addressed one of Jason's "ZZZ" comments.
Changes | Path |
+4 -4 | omake-branches/0.9.8.x/src/ir/omake_command_type.ml |
+4 -3 | omake-branches/0.9.8.x/src/ir/omake_ir_print.ml |
+4 -3 | omake-branches/0.9.8.x/src/ir/omake_ir_print.mli |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-13 11:06:14 -0700 (Wed, 13 Jun 2007)
Revision: 10948
Log message:
Trivial spelling fix.
Changes | Path |
+1 -1 | omake-branches/0.9.8.x/doc/src/omake-language.tex |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-13 11:17:49 -0700 (Wed, 13 Jun 2007)
Revision: 10949
Log message:
Minor error reporting improvement.
Changes | Path |
+17 -15 | omake-branches/0.9.8.x/src/env/omake_ir_ast.ml |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-13 12:07:43 -0700 (Wed, 13 Jun 2007)
Revision: 10950
Log message:
Documenting the meanings of the qualifiers:
private: statically scoped
this: field in the current object
public: global variable
global: same as public
protected:
- in 0.9.8, same as "this."
- in 0.9.9, local to the current file/object
this.protected.x = ...
global.protected.x = ...
or, the correct qualifier is usually inferred
protected.x = ...
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-13 12:53:23 -0700 (Wed, 13 Jun 2007)
Revision: 10952
Log message:
Merge to rev 10950.
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-13 13:17:50 -0700 (Wed, 13 Jun 2007)
Revision: 10953
Log message:
Added a script to run all tests
Changes | Path |
Added | omake-branches/0.9.8.4/tests/runall.osh |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-13 13:23:35 -0700 (Wed, 13 Jun 2007)
Revision: 10954
Log message:
Renamed some test subdirs so that runall can find them
Changes | Path |
Copied | omake-branches/0.9.8.4/tests/object/Test1/ (from rev 10953, omake-branches/0.9.8.4/tests/object/object1) |
Deleted | omake-branches/0.9.8.4/tests/object/object1/ |
Copied | omake-branches/0.9.8.4/tests/simple/Test1/ (from rev 10953, omake-branches/0.9.8.4/tests/simple/if1) |
Deleted | omake-branches/0.9.8.4/tests/simple/if1/ |
Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-06-13 14:21:56 -0700 (Wed, 13 Jun 2007)
Revision: 10955
Log message:
Starting new branch to cover summer research for OMake
Changes | Path |
Added | omake-research/ |
Added | omake-research/file-consistency/ |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 08:03:41 -0700 (Thu, 14 Jun 2007)
Revision: 10959
Log message:
Added a test case for .DEFAULT circular dependency
Changes | Path |
Added | omake-branches/0.9.8.4/tests/simple/Test3/ |
Added | omake-branches/0.9.8.4/tests/simple/Test3/OMakefile |
Added | omake-branches/0.9.8.4/tests/simple/Test3/OMakeroot |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 08:03:45 -0700 (Thu, 14 Jun 2007)
Revision: 10960
Log message:
Added a test case for .SUBDIRS problem
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 08:03:47 -0700 (Thu, 14 Jun 2007)
Revision: 10961
Log message:
Added a test case for vmount
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 08:03:49 -0700 (Thu, 14 Jun 2007)
Revision: 10962
Log message:
Added test case
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 08:40:41 -0700 (Thu, 14 Jun 2007)
Revision: 10963
Log message:
Use "omake check" to run tests instead
This also uses the newly build omake and osh instead of running whatever is
in your PATH.
Changes | Path |
+5 -0 | omake-branches/0.9.8.4/OMakefile |
Added | omake-branches/0.9.8.4/tests/OMakefile |
Deleted | omake-branches/0.9.8.4/tests/runall.osh |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-13 13:17:50 -0700 (Wed, 13 Jun 2007)
Revision: 10953
Log message:
Added a script to run all tests
Changes | Path |
Added | omake-branches/0.9.8.4/tests/runall.osh |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-14 09:49:06 -0700 (Thu, 14 Jun 2007)
Revision: 10964
Log message:
- Made it possible to run tests in parallel
- Added appropriate svn:ignore properties
Changes | Path |
Properties | omake-branches/0.9.8.4/tests/ |
+30 -17 | omake-branches/0.9.8.4/tests/OMakefile |
Properties | omake-branches/0.9.8.4/tests/awk/ |
Properties | omake-branches/0.9.8.4/tests/calculator/ |
Properties | omake-branches/0.9.8.4/tests/exn/ |
Properties | omake-branches/0.9.8.4/tests/object/ |
Properties | omake-branches/0.9.8.4/tests/object/Test1/ |
Properties | omake-branches/0.9.8.4/tests/regex/ |
Properties | omake-branches/0.9.8.4/tests/simple/ |
Properties | omake-branches/0.9.8.4/tests/simple/Test1/ |
Properties | omake-branches/0.9.8.4/tests/simple/Test2/ |
Properties | omake-branches/0.9.8.4/tests/simple/Test3/ |
Properties | omake-branches/0.9.8.4/tests/targets/ |
Properties | omake-branches/0.9.8.4/tests/targets/Test1/ |
Properties | omake-branches/0.9.8.4/tests/vmount/ |
Properties | omake-branches/0.9.8.4/tests/vmount/Test1/ |
Properties | omake-branches/0.9.8.4/tests/vmount/Test1/src/ |
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-14 09:56:29 -0700 (Thu, 14 Jun 2007)
Revision: 10965
Log message:
In the previous commit, forgot to remove some junk.
Changes | Path |
+0 -2 | omake-branches/0.9.8.4/tests/OMakefile |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 13:24:58 -0700 (Thu, 14 Jun 2007)
Revision: 10967
Log message:
Fix some test cases to run properly
Changes | Path |
+1 -0 | omake-branches/0.9.8.4/tests/targets/Test1/OMakefile |
+1 -0 | omake-branches/0.9.8.4/tests/vmount/Test1/OMakefile |
+1 -0 | omake-branches/0.9.8.4/tests/vmount/Test1/OMakeroot |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 13:40:01 -0700 (Thu, 14 Jun 2007)
Revision: 10968
Log message:
Fix a problem with tests/awk/Test2
Changes | Path |
+1 -1 | omake-branches/0.9.8.4/tests/awk/Test2 |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-14 13:40:03 -0700 (Thu, 14 Jun 2007)
Revision: 10969
Log message:
Added test for "cd" in rule bodies
Changes | Path |
Added | omake-branches/0.9.8.4/tests/targets/Test2/ |
Added | omake-branches/0.9.8.4/tests/targets/Test2/OMakefile |
Added | omake-branches/0.9.8.4/tests/targets/Test2/OMakeroot |
Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-06-14 13:51:11 -0700 (Thu, 14 Jun 2007)
Revision: 10970
Log message:
This tests file creation time delays.
Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-06-14 14:35:35 -0700 (Thu, 14 Jun 2007)
Revision: 10972
Log message:
Should allow us to test on data changes rather than just file creation.
Changes | Path |
+15 -2 | omake-research/file-consistency/filemaker.ml |
+28 -2 | omake-research/file-consistency/filetaker.ml |
Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-06-14 15:37:07 -0700 (Thu, 14 Jun 2007)
Revision: 10973
Log message:
Added a data test that is more accurate, results are included. As a note, the test hangs after a while, being unable to open the file--I'm not sure what's causing this.
Changes | Path |
+27 -13 | omake-research/file-consistency/filemaker.ml |
+45 -31 | omake-research/file-consistency/filetaker.ml |
Deleted | omake-research/file-consistency/mojave2-3 |
Copied | omake-research/file-consistency/mojave2-3.create (from rev 10970, omake-research/file-consistency/mojave2-3) |
Added | omake-research/file-consistency/mojave2-3.data |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-15 01:52:02 -0700 (Fri, 15 Jun 2007)
Revision: 10981
Log message:
Look for a file "run.osh" in the test dirs and run it if it exists
Changes | Path |
+17 -7 | omake-branches/0.9.8.4/tests/OMakefile |
Added | omake-branches/0.9.8.4/tests/README |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-15 02:10:23 -0700 (Fri, 15 Jun 2007)
Revision: 10982
Log message:
Rename test script to prepare for reorg
Changes | Path |
Deleted | omake-branches/0.9.8.4/tests/awk/Test1 |
Copied | omake-branches/0.9.8.4/tests/awk/Test1.osh (from rev 10981, omake-branches/0.9.8.4/tests/awk/Test1) |
Deleted | omake-branches/0.9.8.4/tests/awk/Test2 |
Copied | omake-branches/0.9.8.4/tests/awk/Test2.osh (from rev 10981, omake-branches/0.9.8.4/tests/awk/Test2) |
Deleted | omake-branches/0.9.8.4/tests/awk/Test3 |
Copied | omake-branches/0.9.8.4/tests/awk/Test3.osh (from rev 10981, omake-branches/0.9.8.4/tests/awk/Test3) |
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-15 02:10:26 -0700 (Fri, 15 Jun 2007)
Revision: 10983
Log message:
Rewrote awk tests to check output
Changes by: David Kagedal (davidk at lysator.liu.se)
Date: 2007-06-15 02:55:17 -0700 (Fri, 15 Jun 2007)
Revision: 10984
Log message:
Added test case for bug 673
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-15 10:28:06 -0700 (Fri, 15 Jun 2007)
Revision: 10985
Log message:
Document the primitive types.
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-15 11:31:21 -0700 (Fri, 15 Jun 2007)
Revision: 10987
Log message:
Documentation through all-features. The "only" thing that is left is
the DLL code, including generic stub code generation, and the GTK, Fuse,
and ODBC libraries.
Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-06-15 14:20:26 -0700 (Fri, 15 Jun 2007)
Revision: 10989
Log message:
The large data size test appears to be working, but still needs to be looked over further because the numbers it produces are alot lower than expected.
Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-06-15 18:21:19 -0700 (Fri, 15 Jun 2007)
Revision: 10992
Log message:
Refactored code, it now demonstrates the nfs inconsistency we suspected. As a note, for some reason if the maker is told to use the select-based send, the program hangs. Also of note is that 20k files are being used at the moment because it turns out Unix.read doesn't like to read more than that. Deleting the files (mode datadel) in between runs seems to cause much better synchronization.
Changes by: Matthew Maurer (maurer at caltech.edu)
Date: 2007-06-15 18:24:23 -0700 (Fri, 15 Jun 2007)
Revision: 10993
Log message:
Wiped another bogus data file.
Changes | Path |
Deleted | omake-research/file-consistency/mojave8-6.big |
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-15 20:12:17 -0700 (Fri, 15 Jun 2007)
Revision: 10994
Log message:
Added documentation for C parser.
Changes by: Jason J. Hickey (jyh at cs.caltech.edu)
Date: 2007-06-17 11:18:30 -0700 (Sun, 17 Jun 2007)
Revision: 10998
Log message:
Revert
protected -> local to the current file or object
public -> accessible outside it
Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-06-18 11:37:52 -0700 (Mon, 18 Jun 2007)
Revision: 11010
Log message:
Some test updates.