You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2013/07/14 20:23:16 UTC

[lucy-commits] git commit: refs/heads/ivars-wip1 - Fixup TestSchema glitch.

Updated Branches:
  refs/heads/ivars-wip1 422a8a249 -> 2eaf1f64f


Fixup TestSchema glitch.

The lack of a default value for the new parameter `use_alt_arch` in the
TestSchema constructor caused many Perl tests to crash out.

(Will be folded into earlier commit before merging to master.)


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/2eaf1f64
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/2eaf1f64
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/2eaf1f64

Branch: refs/heads/ivars-wip1
Commit: 2eaf1f64fcde4d6a0c1784b3908e3a9c64965462
Parents: 422a8a2
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Sun Jul 14 11:19:44 2013 -0700
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Sun Jul 14 11:21:41 2013 -0700

----------------------------------------------------------------------
 core/Lucy/Test/TestSchema.cfh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/2eaf1f64/core/Lucy/Test/TestSchema.cfh
----------------------------------------------------------------------
diff --git a/core/Lucy/Test/TestSchema.cfh b/core/Lucy/Test/TestSchema.cfh
index 00ee5d2..87dd41a 100644
--- a/core/Lucy/Test/TestSchema.cfh
+++ b/core/Lucy/Test/TestSchema.cfh
@@ -26,10 +26,10 @@ class Lucy::Test::TestSchema inherits Lucy::Plan::Schema {
     bool use_alt_arch;
 
     inert incremented TestSchema*
-    new(bool use_alt_arch);
+    new(bool use_alt_arch = false);
 
     inert TestSchema*
-    init(TestSchema *self, bool use_alt_arch);
+    init(TestSchema *self, bool use_alt_arch = false);
 
     public incremented Architecture*
     Architecture(TestSchema *self);