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 2012/10/03 20:53:18 UTC

[lucy-commits] svn commit: r1393669 - in /lucy/trunk/clownfish/runtime: core/Clownfish/ core/Clownfish/Test/ core/Clownfish/Test/Util/ perl/lib/Clownfish/ perl/t/charmonizer/ perl/t/core/

Author: marvin
Date: Wed Oct  3 18:53:16 2012
New Revision: 1393669

URL: http://svn.apache.org/viewvc?rev=1393669&view=rev
Log:
Move test files to Clownfish parcel.

Adapt parcel names, class names and pound-include paths.

Modified:
    lucy/trunk/clownfish/runtime/core/Clownfish/Test.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.cfh
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.c
    lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.cfh
    lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm
    lucy/trunk/clownfish/runtime/perl/t/charmonizer/001-integers.t
    lucy/trunk/clownfish/runtime/perl/t/charmonizer/002-func_macro.t
    lucy/trunk/clownfish/runtime/perl/t/charmonizer/003-headers.t
    lucy/trunk/clownfish/runtime/perl/t/charmonizer/004-large_files.t
    lucy/trunk/clownfish/runtime/perl/t/charmonizer/005-unused_vars.t
    lucy/trunk/clownfish/runtime/perl/t/charmonizer/006-variadic_macros.t
    lucy/trunk/clownfish/runtime/perl/t/charmonizer/007-dirmanip.t
    lucy/trunk/clownfish/runtime/perl/t/core/016-varray.t
    lucy/trunk/clownfish/runtime/perl/t/core/017-hash.t
    lucy/trunk/clownfish/runtime/perl/t/core/019-obj.t
    lucy/trunk/clownfish/runtime/perl/t/core/020-err.t
    lucy/trunk/clownfish/runtime/perl/t/core/022-bytebuf.t
    lucy/trunk/clownfish/runtime/perl/t/core/029-charbuf.t
    lucy/trunk/clownfish/runtime/perl/t/core/030-number_utils.t
    lucy/trunk/clownfish/runtime/perl/t/core/031-num.t
    lucy/trunk/clownfish/runtime/perl/t/core/032-string_helper.t
    lucy/trunk/clownfish/runtime/perl/t/core/037-atomic.t
    lucy/trunk/clownfish/runtime/perl/t/core/038-lock_free_registry.t
    lucy/trunk/clownfish/runtime/perl/t/core/039-memory.t

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test.c Wed Oct  3 18:53:16 2012
@@ -19,9 +19,11 @@
 #include <string.h>
 
 #define C_LUCY_TESTBATCH
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/VTable.h"
 
 TestBatch*
 TestBatch_new(int64_t num_tests) {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test.cfh Wed Oct  3 18:53:16 2012
@@ -14,13 +14,13 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
 /** Testing framework.
  */
-inert class Lucy::Test { }
+inert class Clownfish::Test { }
 
-class Lucy::Test::TestBatch inherits Clownfish::Obj {
+class Clownfish::Test::TestBatch inherits Clownfish::Obj {
     int64_t    test_num;
     int64_t    num_tests;
     int64_t    num_passed;

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.c Wed Oct  3 18:53:16 2012
@@ -15,11 +15,13 @@
  */
 
 #define C_LUCY_TESTBYTEBUF
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Object/TestByteBuf.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/TestByteBuf.h"
+#include "Clownfish/ByteBuf.h"
 
 static void
 test_Equals(TestBatch *batch) {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestByteBuf.cfh Wed Oct  3 18:53:16 2012
@@ -14,10 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
-parcel Lucy;
+parcel Clownfish;
 
-class Lucy::Test::Object::TestByteBuf cnick TestBB
+class Clownfish::Test::TestByteBuf cnick TestBB
     inherits Clownfish::Obj {
 
     inert void

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.c Wed Oct  3 18:53:16 2012
@@ -14,14 +14,18 @@
  * limitations under the License.
  */
 
-#define C_LUCY_TESTCHARBUF
-#include "Lucy/Util/ToolSet.h"
 #include <string.h>
 #include <stdio.h>
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Object/TestCharBuf.h"
+#define C_LUCY_TESTCHARBUF
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
+
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/TestCharBuf.h"
+#include "Clownfish/CharBuf.h"
+#include "Clownfish/Num.h"
 
 static char smiley[] = { (char)0xE2, (char)0x98, (char)0xBA, 0 };
 static uint32_t smiley_len = 3;

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestCharBuf.cfh Wed Oct  3 18:53:16 2012
@@ -14,10 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
-parcel Lucy;
+parcel Clownfish;
 
-class Lucy::Test::Object::TestCharBuf cnick TestCB
+class Clownfish::Test::TestCharBuf cnick TestCB
     inherits Clownfish::Obj {
 
     inert void

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.c Wed Oct  3 18:53:16 2012
@@ -14,12 +14,14 @@
  * limitations under the License.
  */
 
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Object/TestErr.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/TestErr.h"
 #include "Clownfish/Err.h"
+#include "Clownfish/CharBuf.h"
 
 static void
 test_To_String(TestBatch *batch) {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestErr.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Object::TestErr {
+inert class Clownfish::Test::TestErr {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.c Wed Oct  3 18:53:16 2012
@@ -14,14 +14,19 @@
  * limitations under the License.
  */
 
-#include "Lucy/Util/ToolSet.h"
 #include <stdlib.h>
 #include <time.h>
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Object/TestHash.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
+
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/TestHash.h"
 #include "Clownfish/Hash.h"
+#include "Clownfish/CharBuf.h"
+#include "Clownfish/VArray.h"
+#include "Clownfish/Num.h"
 
 static void
 test_Equals(TestBatch *batch) {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestHash.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Object::TestHash {
+inert class Clownfish::Test::TestHash {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.c Wed Oct  3 18:53:16 2012
@@ -16,11 +16,12 @@
 
 #include <string.h>
 
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Object/TestLockFreeRegistry.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/TestLockFreeRegistry.h"
 #include "Clownfish/LockFreeRegistry.h"
 
 StupidHashCharBuf*

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestLockFreeRegistry.cfh Wed Oct  3 18:53:16 2012
@@ -14,16 +14,16 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Object::TestLockFreeRegistry cnick TestLFReg {
+inert class Clownfish::Test::TestLockFreeRegistry cnick TestLFReg {
     inert void
     run_tests();
 }
 
 /** Private test-only class for stressing LockFreeRegistry.
  */
-class Lucy::Test::Object::StupidHashCharBuf inherits Clownfish::CharBuf {
+class Clownfish::Test::StupidHashCharBuf inherits Clownfish::CharBuf {
     inert incremented StupidHashCharBuf*
     new(const char *text);
 

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.c Wed Oct  3 18:53:16 2012
@@ -15,11 +15,15 @@
  */
 
 #define C_LUCY_TESTNUM
-#include "Lucy/Util/ToolSet.h"
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Object/TestNum.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
+
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/TestNum.h"
+#include "Clownfish/Num.h"
+#include "Clownfish/CharBuf.h"
 
 static void
 test_To_String(TestBatch *batch) {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestNum.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Object::TestNum {
+inert class Clownfish::Test::TestNum {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.c Wed Oct  3 18:53:16 2012
@@ -17,10 +17,14 @@
 #include <stdio.h>
 
 #define C_LUCY_TESTOBJ
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/Object/TestObj.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestObj.h"
+#include "Clownfish/CharBuf.h"
+#include "Clownfish/VTable.h"
+#include "Clownfish/Err.h"
 
 static Obj*
 S_new_testobj() {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestObj.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Object::TestObj {
+inert class Clownfish::Test::TestObj {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.c Wed Oct  3 18:53:16 2012
@@ -14,26 +14,17 @@
  * limitations under the License.
  */
 
-#define C_LUCY_TESTUTILS
-#include "Lucy/Util/ToolSet.h"
 #include <string.h>
+#include <stdlib.h>
+
+#define C_LUCY_TESTUTILS
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test.h"
-#include "Lucy/Analysis/Analyzer.h"
-#include "Lucy/Analysis/Inversion.h"
-#include "Lucy/Analysis/Token.h"
-#include "Lucy/Search/TermQuery.h"
-#include "Lucy/Search/PhraseQuery.h"
-#include "Lucy/Search/LeafQuery.h"
-#include "Lucy/Search/ANDQuery.h"
-#include "Lucy/Search/NOTQuery.h"
-#include "Lucy/Search/ORQuery.h"
-#include "Lucy/Search/RangeQuery.h"
-#include "Lucy/Store/InStream.h"
-#include "Lucy/Store/OutStream.h"
-#include "Lucy/Store/RAMFile.h"
-#include "Lucy/Util/Freezer.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Util/Memory.h"
+#include "Clownfish/CharBuf.h"
 
 uint64_t
 TestUtils_random_u64() {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestUtils.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::TestUtils  {
+inert class Clownfish::Test::TestUtils  {
 
     /** Testing-only CharBuf factory which uses strlen().
      */

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.c Wed Oct  3 18:53:16 2012
@@ -14,12 +14,19 @@
  * limitations under the License.
  */
 
+#include <string.h>
+
 #define C_LUCY_TESTVARRAY
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Object/TestVArray.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/TestVArray.h"
+#include "Clownfish/VArray.h"
+#include "Clownfish/CharBuf.h"
+#include "Clownfish/Num.h"
+#include "Clownfish/Err.h"
 
 static CharBuf*
 S_new_cb(const char *text) {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/TestVArray.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Object::TestVArray {
+inert class Clownfish::Test::TestVArray {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.c Wed Oct  3 18:53:16 2012
@@ -14,10 +14,11 @@
  * limitations under the License.
  */
 
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/Util/TestAtomic.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/Util/TestAtomic.h"
 #include "Clownfish/Util/Atomic.h"
 
 static void

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestAtomic.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Util::TestAtomic {
+inert class Clownfish::Test::Util::TestAtomic {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.c Wed Oct  3 18:53:16 2012
@@ -14,12 +14,12 @@
  * limitations under the License.
  */
 
-#define C_LUCY_TESTMEMORYPOOL
-#define C_LUCY_MEMORYPOOL
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/Util/TestMemory.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/Util/TestMemory.h"
+#include "Clownfish/Util/Memory.h"
 
 #ifndef SIZE_MAX
   #define SIZE_MAX ((size_t)-1)

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestMemory.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Util::TestMemory {
+inert class Clownfish::Test::Util::TestMemory {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.c Wed Oct  3 18:53:16 2012
@@ -14,15 +14,18 @@
  * limitations under the License.
  */
 
-#define C_LUCY_TESTNUMBERUTILS
-#include "Lucy/Util/ToolSet.h"
 #include <stdlib.h>
 #include <time.h>
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/TestUtils.h"
-#include "Lucy/Test/Util/TestNumberUtils.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
+
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/TestUtils.h"
+#include "Clownfish/Test/Util/TestNumberUtils.h"
 #include "Clownfish/Util/NumberUtils.h"
+#include "Clownfish/Util/Memory.h"
+#include "Clownfish/Err.h"
 
 static void
 test_u1(TestBatch *batch) {

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestNumberUtils.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Util::TestNumberUtils cnick TestNumUtil {
+inert class Clownfish::Test::Util::TestNumberUtils cnick TestNumUtil {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.c
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.c?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.c (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.c Wed Oct  3 18:53:16 2012
@@ -14,14 +14,14 @@
  * limitations under the License.
  */
 
-#include "Lucy/Util/ToolSet.h"
+#define LUCY_USE_SHORT_NAMES
+#define CHY_USE_SHORT_NAMES
 
-#include "Lucy/Test.h"
-#include "Lucy/Test/Util/TestStringHelper.h"
-#include "Lucy/Test/TestUtils.h"
+#include "Clownfish/Test.h"
+#include "Clownfish/Test/Util/TestStringHelper.h"
+#include "Clownfish/Test/TestUtils.h"
 #include "Clownfish/Util/StringHelper.h"
 #include "utf8proc.h"
-#include "Lucy/Util/Json.h"
 
 /* This alternative implementation of utf8_valid() is (presumably) slower, but
  * it implements the standard in a more linear, easy-to-grok way.

Modified: lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.cfh
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.cfh?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.cfh (original)
+++ lucy/trunk/clownfish/runtime/core/Clownfish/Test/Util/TestStringHelper.cfh Wed Oct  3 18:53:16 2012
@@ -14,9 +14,9 @@
  * limitations under the License.
  */
 
-parcel Lucy;
+parcel Clownfish;
 
-inert class Lucy::Test::Util::TestStringHelper cnick TestStrHelp {
+inert class Clownfish::Test::Util::TestStringHelper cnick TestStrHelp {
     inert void
     run_tests();
 }

Modified: lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm (original)
+++ lucy/trunk/clownfish/runtime/perl/lib/Clownfish/Test.pm Wed Oct  3 18:53:16 2012
@@ -13,8 +13,8 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-package Lucy::Test;
-use Lucy;
+package Clownfish::Test;
+use Clownfish;
 our $VERSION = '0.003000';
 $VERSION = eval $VERSION;
 
@@ -22,7 +22,7 @@ $VERSION = eval $VERSION;
 # that we simulate large indexes by performing a lot of PostingPool flushes.
 Lucy::Index::PostingListWriter::set_default_mem_thresh(0x1000);
 
-package Lucy::Test::TestCharmonizer;
+package Clownfish::Test::TestCharmonizer;
 our $VERSION = '0.003000';
 $VERSION = eval $VERSION;
 use Config;

Modified: lucy/trunk/clownfish/runtime/perl/t/charmonizer/001-integers.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/charmonizer/001-integers.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/charmonizer/001-integers.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/charmonizer/001-integers.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::TestCharmonizer::run_tests("integers");
+use Clownfish::Test;
+Clownfish::Test::TestCharmonizer::run_tests("integers");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/charmonizer/002-func_macro.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/charmonizer/002-func_macro.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/charmonizer/002-func_macro.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/charmonizer/002-func_macro.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::TestCharmonizer::run_tests("func_macro");
+use Clownfish::Test;
+Clownfish::Test::TestCharmonizer::run_tests("func_macro");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/charmonizer/003-headers.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/charmonizer/003-headers.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/charmonizer/003-headers.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/charmonizer/003-headers.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::TestCharmonizer::run_tests("headers");
+use Clownfish::Test;
+Clownfish::Test::TestCharmonizer::run_tests("headers");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/charmonizer/004-large_files.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/charmonizer/004-large_files.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/charmonizer/004-large_files.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/charmonizer/004-large_files.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::TestCharmonizer::run_tests("large_files");
+use Clownfish::Test;
+Clownfish::Test::TestCharmonizer::run_tests("large_files");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/charmonizer/005-unused_vars.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/charmonizer/005-unused_vars.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/charmonizer/005-unused_vars.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/charmonizer/005-unused_vars.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::TestCharmonizer::run_tests("unused_vars");
+use Clownfish::Test;
+Clownfish::Test::TestCharmonizer::run_tests("unused_vars");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/charmonizer/006-variadic_macros.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/charmonizer/006-variadic_macros.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/charmonizer/006-variadic_macros.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/charmonizer/006-variadic_macros.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::TestCharmonizer::run_tests("variadic_macros");
+use Clownfish::Test;
+Clownfish::Test::TestCharmonizer::run_tests("variadic_macros");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/charmonizer/007-dirmanip.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/charmonizer/007-dirmanip.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/charmonizer/007-dirmanip.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/charmonizer/007-dirmanip.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::TestCharmonizer::run_tests("dir_manip");
+use Clownfish::Test;
+Clownfish::Test::TestCharmonizer::run_tests("dir_manip");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/016-varray.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/016-varray.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/016-varray.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/016-varray.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestVArray");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestVArray");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/017-hash.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/017-hash.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/017-hash.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/017-hash.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestHash");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestHash");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/019-obj.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/019-obj.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/019-obj.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/019-obj.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestObj");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestObj");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/020-err.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/020-err.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/020-err.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/020-err.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestErr");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestErr");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/022-bytebuf.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/022-bytebuf.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/022-bytebuf.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/022-bytebuf.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestByteBuf");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestByteBuf");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/029-charbuf.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/029-charbuf.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/029-charbuf.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/029-charbuf.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestCharBuf");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestCharBuf");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/030-number_utils.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/030-number_utils.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/030-number_utils.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/030-number_utils.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestNumberUtils");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestNumberUtils");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/031-num.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/031-num.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/031-num.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/031-num.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestNum");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestNum");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/032-string_helper.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/032-string_helper.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/032-string_helper.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/032-string_helper.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestStringHelper");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestStringHelper");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/037-atomic.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/037-atomic.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/037-atomic.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/037-atomic.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestAtomic");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestAtomic");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/038-lock_free_registry.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/038-lock_free_registry.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/038-lock_free_registry.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/038-lock_free_registry.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestLockFreeRegistry");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestLockFreeRegistry");
 

Modified: lucy/trunk/clownfish/runtime/perl/t/core/039-memory.t
URL: http://svn.apache.org/viewvc/lucy/trunk/clownfish/runtime/perl/t/core/039-memory.t?rev=1393669&r1=1393668&r2=1393669&view=diff
==============================================================================
--- lucy/trunk/clownfish/runtime/perl/t/core/039-memory.t (original)
+++ lucy/trunk/clownfish/runtime/perl/t/core/039-memory.t Wed Oct  3 18:53:16 2012
@@ -16,6 +16,6 @@
 use strict;
 use warnings;
 
-use Lucy::Test;
-Lucy::Test::run_tests("TestMemory");
+use Clownfish::Test;
+Clownfish::Test::run_tests("TestMemory");